Files
dotfiles/home-modules/virt-manager.nix
Lennart J. Kurzweg (Nx2) b4586e8661 chmod
2025-01-27 22:17:00 +01:00

16 lines
359 B
Nix

{ config, pkgs, lib, host, ... }:
lib.mkIf (host == "NxNORTH")
{
home.packages = with pkgs; [
virt-manager
];
# programs.virt-manager.enable = true; # needs this in virtualization.nix
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
}