aboutsummaryrefslogtreecommitdiff
path: root/hosts/loki/filesystems/default.nix
blob: 6157762f50854549ddc529218f87219d54a5a8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  fileSystems."/" = {
    device = "/dev/disk/by-uuid/a3a9fc5f-8809-4db0-b0f3-08e58cb79716";
    fsType = "ext4";
  };

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

  swapDevices = [ ];
}