build01, build05: switch to 6.12 kernel
This commit is contained in:
parent
33ba303300
commit
a606396fa1
3 changed files with 7 additions and 3 deletions
|
@ -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";
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue