mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-16 19:22:00 -05:00
22 lines
411 B
Nix
22 lines
411 B
Nix
{
|
|
hostname,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (import ../../../hosts/${hostname}/env.nix) QEMU-VM-Use-Case;
|
|
in
|
|
with lib;
|
|
mkIf QEMU-VM-Use-Case {
|
|
dconf.settings = {
|
|
"org/virt-manager/virt-manager/connections" = {
|
|
autoconnect = ["qemu:///system"];
|
|
uris = ["qemu:///system"];
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
virt-manager
|
|
];
|
|
}
|