6 lines
152 B
Nix
6 lines
152 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
boot.kernelParams = [ "intel_iommu=on" ];
|
|
virtualisation.libvirtd.enable = true;
|
|
}
|