diff options
Diffstat (limited to 'hosts/mercury/disks.nix')
| -rw-r--r-- | hosts/mercury/disks.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/hosts/mercury/disks.nix b/hosts/mercury/disks.nix new file mode 100644 index 0000000..ffa0871 --- /dev/null +++ b/hosts/mercury/disks.nix @@ -0,0 +1,14 @@ +{ + # TODO: Replace this with disko eventually + + fileSystems."/" = { + device = "/dev/disk/by-uuid/3d80a86b-3268-4209-a833-b531b8bc0ebc"; + fsType = "ext4"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/45A4-2E5B"; + fsType = "vfat"; + options = ["fmask=0022" "dmask=0022"]; + }; +} |
