diff options
Diffstat (limited to 'hosts/loki/filesystems')
-rw-r--r-- | hosts/loki/filesystems/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hosts/loki/filesystems/default.nix b/hosts/loki/filesystems/default.nix new file mode 100644 index 0000000..6157762 --- /dev/null +++ b/hosts/loki/filesystems/default.nix @@ -0,0 +1,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 = [ ]; +} |