diff options
Diffstat (limited to 'hosts/thor/filesystems/default.nix')
-rw-r--r-- | hosts/thor/filesystems/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hosts/thor/filesystems/default.nix b/hosts/thor/filesystems/default.nix new file mode 100644 index 0000000..cf86dda --- /dev/null +++ b/hosts/thor/filesystems/default.nix @@ -0,0 +1,17 @@ +{ + fileSystems."/" = { + device = "/dev/disk/by-uuid/e336b96d-b3b4-4098-a0ca-9001fd381f88"; + fsType = "ext4"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/F804-40A9"; + fsType = "vfat"; + options = [ + "fmask=0022" + "dmask=0022" + ]; + }; + + swapDevices = [ ]; +} |