Enhancement: Set kernel to version 6.12 (from 6.6).

This commit is contained in:
Joey Hafner 2025-02-06 15:57:00 -08:00
parent 6f2abb40ba
commit 9a10b8db7e
Signed by: Jafner
GPG Key ID: 6D9A24EF2F389E55
2 changed files with 3 additions and 1 deletions

View File

@ -71,7 +71,7 @@
sshKey = "/home/joey/.ssh/joey.desktop@jafner.net"; sshKey = "/home/joey/.ssh/joey.desktop@jafner.net";
signingKey = "B0BBF464024BCEAE"; signingKey = "B0BBF464024BCEAE";
shellPackage = "zsh"; shellPackage = "zsh";
kernelPackage = "linux_zen"; # Read more: https://nixos.wiki/wiki/Linux_kernel; Other options: https://mynixos.com/nixpkgs/packages/linuxKernel.packages; kernelPackage = "linux_6_12"; # Read more: https://nixos.wiki/wiki/Linux_kernel; Other options: https://mynixos.com/nixpkgs/packages/linuxKernel.packages;
wallpaper = ./assets/romb-3840x2160.png; wallpaper = ./assets/romb-3840x2160.png;
arch = "x86_64-linux"; arch = "x86_64-linux";
flakeDir = "Git/Jafner.net/dotfiles"; flakeDir = "Git/Jafner.net/dotfiles";
@ -258,6 +258,7 @@
torrenting = "/mnt/torrenting"; torrenting = "/mnt/torrenting";
}; };
}; };
kernelPackage = "";
}; };
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import inputs.nixpkgs { pkgs = import inputs.nixpkgs {

View File

@ -21,6 +21,7 @@
initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
initrd.kernelModules = [ ]; initrd.kernelModules = [ ];
kernelModules = [ "kvm-amd" ]; kernelModules = [ "kvm-amd" ];
kernelPackages = pkgs.linuxKernel.packages."${sys.kernelPackage}";
extraModulePackages = [ ]; extraModulePackages = [ ];
}; };