fix(futomaki): explitly set kernel 6.1 for nvidia

Revert once nvidia supports 6.2
This commit is contained in:
winston 2023-03-08 00:29:29 +01:00
parent 0a0a985b23
commit 61243eb191
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ in {
];
boot = {
kernelPackages = pkgs.linuxPackages_latest;
kernelPackages = pkgs.linuxPackages_6_1;
# for nvidia
loader.systemd-boot.consoleMode = "0";
kernelParams = ["quiet" "splash" "vt.global_cursor_default=0"];

View file

@ -69,5 +69,5 @@
hardware.opengl.enable = true;
hardware.nvidia.modesetting.enable = true;
# Optionally, you may need to select the appropriate driver version for your specific GPU.
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.latest;
}