Files
nixconf/modules/sys/hw/cpu/intel.nix
T
2026-06-01 19:17:10 -06:00

8 lines
231 B
Nix

{ pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
boot.binfmt.preferStaticEmulators = true;
boot.binfmt.emulatedSystems = [ "aarch64-linux" "x86_64-windows" ];
boot.kernelModules = [ "kvm-intel" ];
}