diff --git a/hosts/h001/hardware-configuration.nix b/hosts/h001/hardware-configuration.nix index 9a0573e..a3b417a 100644 --- a/hosts/h001/hardware-configuration.nix +++ b/hosts/h001/hardware-configuration.nix @@ -36,10 +36,15 @@ ]; }; + fileSystems."/drives/wd10" = { + device = "/dev/sda"; + fsType = "ext4"; + }; + swapDevices = [ { device = "/.swapfile"; - size = 64 * 1024; # 64GB + size = 4 * 1024; # 4GB } ]; networking.useDHCP = lib.mkDefault true;