feat(stolas): replace zram with zswap

This commit is contained in:
Tim Schubert 2025-07-27 00:55:31 +02:00
parent 0909933ba9
commit 03c6c141ee
No known key found for this signature in database

View file

@ -26,8 +26,8 @@
# Hopefully fixes suspend issues with wifi card
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"resume=UUID=81dfbfa5-d578-479c-b11c-3ee5abd6848a"
"resume_offset=533760"
"zswap.enabled=1"
];
extraModulePackages = [ config.boot.kernelPackages.v4l2loopback ];
# Lanzaboote currently replaces the systemd-boot module.
@ -210,7 +210,4 @@
};
};
};
# Create compressing swap space in RAM
zramSwap.enable = true;
}