blob: 440dc6e86576eff287a87c15e156668b270c4bc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, lib, ... }: with lib; {
environment.systemPackages = with pkgs; mkIf (!pkgs.stdenv.isDarwin) [
virt-viewer
];
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
hm.dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = ["qemu:///system"];
uris = ["qemu:///system"];
};
};
my.extraGroups = [ "libvirtd" ];
}
|