mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
13 lines
209 B
Nix
13 lines
209 B
Nix
{ config, ... }:
|
|
|
|
/*
|
|
This hardware profile corresponds to any machine which has an Intel processor.
|
|
*/
|
|
|
|
{
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
|
|
boot = {
|
|
kernelModules = [ "kvm-intel" ];
|
|
};
|
|
}
|