modules/system: update kernel version
This commit is contained in:
parent
b2f8aa4b44
commit
b26c6edefa
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ in
|
||||||
|
|
||||||
(lib.mkIf (cfg.kernel == "hardened") (
|
(lib.mkIf (cfg.kernel == "hardened") (
|
||||||
hardenedProfile // {
|
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.
|
# Fix for GLIBC errors due to 'scudo' from hardened profile.
|
||||||
# https://github.com/NixOS/nix/issues/6563
|
# https://github.com/NixOS/nix/issues/6563
|
||||||
environment.memoryAllocator.provider = "libc";
|
environment.memoryAllocator.provider = "libc";
|
||||||
|
@ -40,7 +40,7 @@ in
|
||||||
})
|
})
|
||||||
|
|
||||||
(lib.mkIf (cfg.kernel == "stable") {
|
(lib.mkIf (cfg.kernel == "stable") {
|
||||||
boot.kernelPackages = pkgs.unstable.linuxPackages_6_6;
|
boot.kernelPackages = pkgs.unstable.linuxPackages_6_10;
|
||||||
})
|
})
|
||||||
|
|
||||||
(lib.mkIf (cfg.kernel == "latest") {
|
(lib.mkIf (cfg.kernel == "latest") {
|
||||||
|
|
Loading…
Reference in a new issue