summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorseth <[email protected]>2024-11-25 11:34:15 -0500
committerseth <[email protected]>2024-11-25 11:34:15 -0500
commit45e941b24e0531bd3892de0e7173ebfbdc53948d (patch)
tree4a7962f855ed7b2983079c3333de16b9fbd57677 /systems
parent0d00c5b0965703d1a86340ea5e4d4e3d019346aa (diff)
glados: pin linux kernel to 6.11
seems v550 of the nvidia drivers are borked on 6.12
Diffstat (limited to 'systems')
-rw-r--r--systems/glados/boot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/systems/glados/boot.nix b/systems/glados/boot.nix
index b236d34..b4f3b61 100644
--- a/systems/glados/boot.nix
+++ b/systems/glados/boot.nix
@@ -17,7 +17,7 @@
boot = {
initrd.systemd.enable = true; # for unlocking luks root with tpm2
- kernelPackages = pkgs.linuxPackages_latest;
+ kernelPackages = pkgs.linuxKernel.packages.linux_6_11;
kernelParams = [ "amd_pstate=active" ];