9 lines
276 B
Nix
9 lines
276 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
|
boot.binfmt.preferStaticEmulators = true;
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" "x86_64-windows" ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
} |