diff options
Diffstat (limited to 'hosts/sol/filesystems/default.nix')
-rw-r--r-- | hosts/sol/filesystems/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hosts/sol/filesystems/default.nix b/hosts/sol/filesystems/default.nix new file mode 100644 index 0000000..e31b2e3 --- /dev/null +++ b/hosts/sol/filesystems/default.nix @@ -0,0 +1,17 @@ +{ + fileSystems."/" = { + device = "/dev/disk/by-uuid/5ac7df5a-5908-4b6a-b982-88c34775205a"; + fsType = "ext4"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/ED26-4D10"; + fsType = "vfat"; + options = [ + "fmask=0022" + "dmask=0022" + ]; + }; + + swapDevices = [ ]; +} |