nichts/nyx/homes/notashelf/misc/dconf.nix

17 lines
496 B
Nix
Raw Normal View History

2024-04-09 23:11:33 +02:00
{
dconf.settings = {
# this is like a system-wide dark mode switch that some apps respect
# equivalent of the following dconf command:
# `conf write /org/gnome/desktop/interface/color-scheme "'prefer-dark'"`
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
# tell virt-manager to use the system connection
"org/virt-manager/virt-manager/connections" = {
autoconnect = ["qemu:///system"];
uris = ["qemu:///system"];
};
};
}