7 lines
224 B
Nix
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 ];
|
|
}
|