1
Fork 0
nixos-system-config/modules/system/virtualisation.nix

19 lines
347 B
Nix
Raw Permalink Normal View History

2024-06-28 00:52:58 +02:00
{ ... }:
2024-06-27 20:59:55 +02:00
{
2024-06-28 00:52:58 +02:00
virtualisation.libvirtd.enable = true;
2024-06-27 20:59:55 +02:00
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"];
};
};
};
2024-06-27 20:59:55 +02:00
}