nix-config/modules/home-manager/virt/qemu.nix
2025-08-08 19:05:01 +02:00

15 lines
271 B
Nix

{ lib, smayzy, ... }:
let
inherit (lib) mkIf;
in
{
config = mkIf smayzy.virt.enable {
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
};
}