nixos-config/systemProfiles/services/virt/virt-manager.nix
2024-10-25 10:39:48 +02:00

6 lines
198 B
Nix

_: {pkgs, ...}: {
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
boot.kernelParams = ["amd_iommu=on" "iommu=pt"];
environment.systemPackages = [pkgs.libvirt];
}