From fce1db8a5d62915c9c456403c0c451266730efbb Mon Sep 17 00:00:00 2001 From: k3t Date: Mon, 1 Jun 2026 19:17:10 -0600 Subject: [PATCH] fix pkgs reference for kernels --- modules/sys/hw/cpu/amd64.nix | 2 ++ modules/sys/hw/cpu/intel.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/modules/sys/hw/cpu/amd64.nix b/modules/sys/hw/cpu/amd64.nix index 1fb2183..5c7d5df 100644 --- a/modules/sys/hw/cpu/amd64.nix +++ b/modules/sys/hw/cpu/amd64.nix @@ -1,3 +1,5 @@ +{ pkgs, ... }: + { boot.kernelPackages = pkgs.linuxPackages_xanmod_latest; boot.binfmt.preferStaticEmulators = true; diff --git a/modules/sys/hw/cpu/intel.nix b/modules/sys/hw/cpu/intel.nix index 46c5386..370b065 100644 --- a/modules/sys/hw/cpu/intel.nix +++ b/modules/sys/hw/cpu/intel.nix @@ -1,3 +1,5 @@ +{ pkgs, ... }: + { boot.kernelPackages = pkgs.linuxPackages_xanmod_latest; boot.binfmt.preferStaticEmulators = true;