diff --git a/hosts/home/hardware-configuration/default.nix b/hosts/home/hardware-configuration/default.nix index 7bc9170..08a5ca5 100644 --- a/hosts/home/hardware-configuration/default.nix +++ b/hosts/home/hardware-configuration/default.nix @@ -3,6 +3,7 @@ { imports = [ ./generated.nix # Include the results of the hardware scan. + ./manual.nix ./nfs.nix ]; diff --git a/hosts/home/hardware-configuration/manual.nix b/hosts/home/hardware-configuration/manual.nix new file mode 100644 index 0000000..2b89c04 --- /dev/null +++ b/hosts/home/hardware-configuration/manual.nix @@ -0,0 +1,12 @@ +{ + swapDevices = [ + { + device = "/var/lib/swapfile"; + size = 64 * 1024; + } + ]; + + boot.kernelParams = [ + "resume=UUID=969c5f68-631d-4429-b81b-0d81e050449b" + ]; +}