diff options
author | tdback <tyler@tdback.net> | 2025-03-05 20:07:01 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-03-05 20:07:01 -0500 |
commit | 134264245ff8b1e6f0347b063b58821a938210f4 (patch) | |
tree | 9587090d787b75b161f10906cd1d5d23924f1194 /hosts/sol/filesystems | |
parent | 4063c2a6e59c9cd5233688db679b80fadf16ad33 (diff) |
flake: add sol server
Diffstat (limited to 'hosts/sol/filesystems')
-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 = [ ]; +} |