12 lines
165 B
Nix
12 lines
165 B
Nix
{ ... }:
|
|
|
|
{
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
programs.virt-manager.enable = true;
|
|
|
|
users.users.user.extraGroups = [
|
|
"libvirt"
|
|
"libvirtd"
|
|
];
|
|
}
|