all repos — nixfiles @ 759b3c467cf5eeeaa3247e76dc5695f4973137f4

System and user configuration, managed by nix and home-manager

system/settings/services/virtualisation.nix (view raw)

{
  pkgs,
  ...
}:
{
  virtualisation.libvirtd = {
    enable = true;
    onBoot = "ignore";
    onShutdown = "shutdown";
    qemu = {
      package = pkgs.qemu_kvm;
      ovmf.enable = true;
      runAsRoot = false;
    };
  };
  programs.virt-manager = {
    enable = true;
  };

  environment.systemPackages = with pkgs; [
    OVMF
  ];
}