feat(stolas): use larger swapfile
Some checks are pending
Continuous Integration / Checks (push) Waiting to run

This commit is contained in:
Tim Schubert 2025-07-27 01:23:13 +02:00
parent 9ec0688652
commit 712cca5909
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -26,7 +26,8 @@
# Hopefully fixes suspend issues with wifi card # Hopefully fixes suspend issues with wifi card
kernelPackages = pkgs.linuxPackages_latest; kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [ kernelParams = [
"resume_offset=533760" "resume=UUID=81dfbfa5-d578-479c-b11c-3ee5abd6848a"
"resume_offset=79859524"
"zswap.enabled=1" "zswap.enabled=1"
]; ];
extraModulePackages = [ config.boot.kernelPackages.v4l2loopback ]; extraModulePackages = [ config.boot.kernelPackages.v4l2loopback ];

View file

@ -86,7 +86,7 @@
}; };
"/swap" = { "/swap" = {
mountpoint = "/.swapvol"; mountpoint = "/.swapvol";
swap.swapfile.size = "64G"; swap.swapfile.size = "128G";
}; };
}; };
}; };