nixdots/home/misc/dconf.nix

11 lines
310 B
Nix
Raw Normal View History

{
dconf.settings = {
# This is like a system-wide dark mode swithc 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";
};
};
}