diff options
| author | Dominik Kaiser | 2025-06-25 18:05:58 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2025-06-25 18:05:58 +0200 |
| commit | 647fb336f3ae3561d1905727ff58c1146c716028 (patch) | |
| tree | 49ab938578f38d21caf445a4d0c755035be724ac /hosts | |
| parent | 628203056295c066122e999cb4ec18a5c728dafa (diff) | |
| download | nixos-647fb336f3ae3561d1905727ff58c1146c716028.tar.gz nixos-647fb336f3ae3561d1905727ff58c1146c716028.zip | |
Add HDD to sol
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/sol/hardware-configuration.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hosts/sol/hardware-configuration.nix b/hosts/sol/hardware-configuration.nix index cd95066..6757831 100644 --- a/hosts/sol/hardware-configuration.nix +++ b/hosts/sol/hardware-configuration.nix @@ -26,6 +26,12 @@ options = [ "fmask=0077" "dmask=0077" ]; }; + fileSystems."/mnt/hdd" = + { device = "/dev/disk/by-uuid/cdbcd0ba-9d57-4787-a747-2958c835fbf4"; + fsType = "ext4"; + }; + + swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking |
