diff options
Diffstat (limited to 'hosts/heimdall/filesystems')
-rw-r--r-- | hosts/heimdall/filesystems/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hosts/heimdall/filesystems/default.nix b/hosts/heimdall/filesystems/default.nix new file mode 100644 index 0000000..a956d2d --- /dev/null +++ b/hosts/heimdall/filesystems/default.nix @@ -0,0 +1,17 @@ +{ + fileSystems."/" = { + device = "/dev/disk/by-uuid/d62103eb-e154-4b71-b813-54ca76815a80"; + fsType = "ext4"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/5972-1878"; + fsType = "vfat"; + options = [ + "fmask=0022" + "dmask=0022" + ]; + }; + + swapDevices = [ ]; +} |