17 lines
274 B
Nix
17 lines
274 B
Nix
{ ... }:
|
|
|
|
{
|
|
virtualisation = {
|
|
libvirtd.enable = true;
|
|
spiceUSBRedirection.enable = true;
|
|
};
|
|
|
|
programs.virt-manager.enable = true;
|
|
|
|
networking.firewall.trustedInterfaces = [ "virbr0" ];
|
|
|
|
users.users.user.extraGroups = [
|
|
"libvirt"
|
|
"libvirtd"
|
|
];
|
|
}
|