modules/system: update kernel version

This commit is contained in:
Dmitriy Pleshevskiy 2024-09-05 18:46:13 +03:00
parent b2f8aa4b44
commit b26c6edefa
Signed by: pleshevskiy
GPG key ID: 17041163DA10A9A2

View file

@ -28,7 +28,7 @@ in
(lib.mkIf (cfg.kernel == "hardened") (
hardenedProfile // {
boot.kernelPackages = pkgs.unstable.linuxPackages_6_6_hardened;
boot.kernelPackages = pkgs.unstable.linuxPackages_6_9_hardened;
# Fix for GLIBC errors due to 'scudo' from hardened profile.
# https://github.com/NixOS/nix/issues/6563
environment.memoryAllocator.provider = "libc";
@ -40,7 +40,7 @@ in
})
(lib.mkIf (cfg.kernel == "stable") {
boot.kernelPackages = pkgs.unstable.linuxPackages_6_6;
boot.kernelPackages = pkgs.unstable.linuxPackages_6_10;
})
(lib.mkIf (cfg.kernel == "latest") {