build01, build05: switch to 6.12 kernel

This commit is contained in:
zowoq 2025-01-20 14:29:18 +10:00
parent 33ba303300
commit a606396fa1
3 changed files with 7 additions and 3 deletions
hosts
modules/nixos/common

View file

@ -1,4 +1,4 @@
{ inputs, ... }:
{ inputs, pkgs, ... }:
{
imports = [
inputs.self.nixosModules.cgroups
@ -7,6 +7,8 @@
inputs.srvos.nixosModules.hardware-hetzner-online-amd
];
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
nix.settings.max-jobs = 24;
nixpkgs.hostPlatform.gcc.arch = "znver2";

View file

@ -1,4 +1,4 @@
{ inputs, ... }:
{ inputs, pkgs, ... }:
{
imports = [
inputs.self.nixosModules.cgroups
@ -7,6 +7,8 @@
inputs.srvos.nixosModules.hardware-hetzner-online-arm
];
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
nix.settings.max-jobs = 80;
nixpkgs.hostPlatform.gcc.arch = "armv8-a";

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_6;
boot.kernelPackages = lib.mkDefault pkgs.linuxKernel.packages.linux_6_6;
boot.zfs.package = pkgs.zfs_2_3;