diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-01-19 22:36:56 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-01-19 22:39:50 +0530 |
commit | cdef8cb27f98fc89c64ad149b8ce51b6f20404cc (patch) | |
tree | e6d897fd9615ff776821cc391e9c7173288971c7 | |
parent | 9695d5f82cec1da26e13d5ab77a6f9d3b38bcb75 (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.nix | 3 |
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 ]; |