Files
nix-config/modules/virt-manager.nix
2023-12-02 17:38:10 +01:00

7 lines
224 B
Nix

{ pkgs, ... }:
{
virtualisation.libvirtd.enable = true;
programs.dconf.enable = true; # virt-manager requires dconf to remember settings
environment.systemPackages = with pkgs; [ virt-manager virtiofsd virtio-win ];
}