Add dconf.enable=true to dconf.nix (even though we do it system-wide)

This commit is contained in:
ItsDrike 2024-06-20 22:03:30 +02:00
parent 4af1e37781
commit 70a8b66d01
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -1,5 +1,7 @@
{
dconf.settings = {
dconf = {
enable = true;
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'"`
@ -7,4 +9,5 @@
color-scheme = "prefer-dark";
};
};
};
}