9 lines
204 B
Nix
9 lines
204 B
Nix
{pkgs, ...}:
|
|
|
|
{
|
|
virtualisation.libvirtd.enable = true;
|
|
programs.dconf.enable = true;
|
|
environment.systemPackages = with pkgs; [ virt-manager ];
|
|
|
|
users.users."aaron".extraGroups = [ "libvirtd" ];
|
|
}
|