diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-06-09 17:40:46 +0000 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-06-09 17:40:46 +0000 |
| commit | a45c4551712c1ba5cb82eaf290f311ab0e8690e4 (patch) | |
| tree | f62b23489fb31f8ea58fef77f99619efd784eb36 /hosts/mercury/disks.nix | |
big changes
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"]; + }; +} |
