summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2025-01-19 22:36:56 +0530
committersinanmohd <sinan@sinanmohd.com>2025-01-19 22:39:50 +0530
commitcdef8cb27f98fc89c64ad149b8ce51b6f20404cc (patch)
treee6d897fd9615ff776821cc391e9c7173288971c7
parent9695d5f82cec1da26e13d5ab77a6f9d3b38bcb75 (diff)
cez: switch to lts kernel
screen flickers and then turn off after s3 leep on stable kernel
-rw-r--r--os/cez/hardware-configuration.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/cez/hardware-configuration.nix b/os/cez/hardware-configuration.nix
index 9c44303..804ac8d 100644
--- a/os/cez/hardware-configuration.nix
+++ b/os/cez/hardware-configuration.nix
@@ -1,4 +1,4 @@
-{ modulesPath, nixos-hardware, config, ... }:
+{ modulesPath, nixos-hardware, config, pkgs, lib, ... }:
{
imports = [
@@ -16,6 +16,7 @@
}];
boot = {
+ kernelPackages = lib.mkForce pkgs.linuxPackages;
loader.systemd-boot.enable = true;
blacklistedKernelModules = [ "k10temp" ];
extraModulePackages = with config.boot.kernelPackages; [ zenpower ];