18 lines
347 B
Nix
18 lines
347 B
Nix
{ ... }:
|
|
|
|
{
|
|
virtualisation.libvirtd.enable = true;
|
|
programs.virt-manager.enable = true;
|
|
|
|
users.users.hu.extraGroups = [ "libvirtd" ];
|
|
|
|
home-manager.users.hu = {
|
|
dconf.settings = {
|
|
"org/virt-manager/virt-manager/connections" = {
|
|
autoconnect = ["qemu:///system"];
|
|
uris = ["qemu:///system"];
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|