patos/modules/kernel.nix
Daniel Lundin 5413d6ab6b
Some checks failed
ci/woodpecker/push/ci Pipeline failed
use erofs w/zstd compression. clean up a bit.
2024-10-11 15:02:23 +02:00

13 lines
226 B
Nix

{ pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_6_11;
boot.kernelPatches = [
{
# name = "crashdump-config";
patch = null;
extraConfig = ''
EROFS_FS_ZIP_ZSTD y
'';
}
];
}