modules/nixos/common/builder: switch back to 6.6 kernel

This commit is contained in:
zowoq 2025-01-03 14:03:40 +10:00
parent 16c333cfde
commit 8fd43a7c75
2 changed files with 2 additions and 4 deletions
hosts/build03
modules/nixos/common

View file

@ -1,4 +1,4 @@
{ inputs, pkgs, ... }:
{ inputs, ... }:
{
imports = [
./builders.nix
@ -16,8 +16,6 @@
inputs.srvos.nixosModules.hardware-hetzner-online-amd
];
boot.kernelPackages = pkgs.lib.mkForce pkgs.linuxKernel.packages.linux_6_6;
nix.settings.max-jobs = 96;
nixpkgs.hostPlatform.gcc.arch = "znver4";

View file

@ -9,7 +9,7 @@
config = lib.mkIf (lib.hasPrefix "build" config.networking.hostName) {
nix.gc.automatic = false;
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_6;
# kernel samepage merging
hardware.ksm.enable = true;