summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 ];