Files
dotfiles/home-modules/virt-manager.nix
Lennart J. Kurzweg (Nx2) 428c531415 homeACE
2024-05-05 12:32:57 +02:00

16 lines
359 B
Nix
Executable File

{ 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" ];
};
};
}