{ ... }: { config = { boot.kernelParams = [ "zswap.enabled=1" "zswap.compressor=zstd" "zswap.zpool=zsmalloc" "zswap.max_pool_percent=25" "zswap.accept_threshold_percent=90" "zswap.shrinker_enabled=1" ]; boot.initrd.kernelModules = [ "zstd" "zsmalloc" ]; boot.kernel.sysfs.module.zswap.parameters = { enabled = true; compressor = "zstd"; zpool = "zsmalloc"; max_pool_percent = 25; accept_threshold_percent = 90; shrinker_enabled = true; }; }; }