From aa3db27c77f1964ef832262873d6f75bdbf51c05 Mon Sep 17 00:00:00 2001 From: kurogeek Date: Thu, 2 Apr 2026 17:53:37 +0700 Subject: [PATCH] machines/rana: hardcode kernel to version 6.12 to fix freezing issue --- machines/rana/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/machines/rana/configuration.nix b/machines/rana/configuration.nix index e7546c7..72a85da 100644 --- a/machines/rana/configuration.nix +++ b/machines/rana/configuration.nix @@ -1,4 +1,4 @@ -{ self, ... }: +{ self, pkgs, ... }: { imports = [ self.nixosModules.common @@ -15,4 +15,6 @@ "amdgpu.cwsr_enable=0" "amdgpu.gpu_recovery=1" ]; + + boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_12; }