aboutsummaryrefslogtreecommitdiff
path: root/hosts/frigg/filesystems/default.nix
blob: 3b390f870e04f0f42af814a8efee5196c32beb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  fileSystems."/" = {
    device = "/dev/disk/by-uuid/3e333010-7dae-47cf-9288-85d58ddda699";
    fsType = "ext4";
  };

  fileSystems."/boot" = {
    device = "/dev/disk/by-uuid/8430-1FF8";
    fsType = "vfat";
    options = [
      "fmask=0022"
      "dmask=0022"
    ];
  };

  swapDevices = [ ];
}