16 lines
367 B
Nix
16 lines
367 B
Nix
{ lib, nixosConfig, ... }:
|
|
{
|
|
|
|
dconf.settings = {
|
|
"org/virt-manager/virt-manager/connections" =
|
|
lib.mkIf nixosConfig.bchmnn.collections.virtualisation.enable
|
|
{
|
|
autoconnect = [ "qemu:///system" ];
|
|
uris = [ "qemu:///system" ];
|
|
};
|
|
"org/gnome/desktop/interface" = {
|
|
"color-scheme" = "prefer-light";
|
|
};
|
|
};
|
|
|
|
}
|