From 5c2647ca560695f21b95edff2a0e905cb3040f6a Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 17:16:42 +0100 Subject: [PATCH] srv-core: Install out of tree kernel module `it87` --- hosts/srv-core/hardware.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/srv-core/hardware.nix b/hosts/srv-core/hardware.nix index 94aca3a..b418ddc 100644 --- a/hosts/srv-core/hardware.nix +++ b/hosts/srv-core/hardware.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ config, inputs, ... }: { imports = [ inputs.nixos-hardware.nixosModules.hardkernel-odroid-h4 ]; @@ -10,6 +10,7 @@ "coretemp" "it87" ]; + extraModulePackages = [ config.boot.kernelPackages.it87 ]; initrd.availableKernelModules = [ "xhci_pci" "ahci"