aboutsummaryrefslogtreecommitdiff
path: root/hosts/odin/filesystems/default.nix
blob: 410e4251726e2791147e33f4948874a0e420c8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  fileSystems."/" = {
    device = "/dev/disk/by-uuid/f3bedccb-3f2b-49ae-9be4-5ec9fe683027";
    fsType = "ext4";
  };

  fileSystems."/boot" = {
    device = "/dev/disk/by-uuid/78C3-E7F8";
    fsType = "vfat";
    options = [
      "fmask=0022"
      "dmask=0022"
    ];
  };

  swapDevices = [ ];
}