mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:19:42 +00:00
Add dconf.enable=true to dconf.nix (even though we do it system-wide)
This commit is contained in:
parent
4af1e37781
commit
70a8b66d01
|
@ -1,10 +1,13 @@
|
||||||
{
|
{
|
||||||
dconf.settings = {
|
dconf = {
|
||||||
# This is like a system-wide dark mode swithc that some apps respect
|
enable = true;
|
||||||
# Equivalent of the following dconf command:
|
settings = {
|
||||||
# `conf write /org/gnome/desktop/interface/color-scheme "'prefer-dark'"`
|
# This is like a system-wide dark mode swithc that some apps respect
|
||||||
"org/gnome/desktop/interface" = {
|
# Equivalent of the following dconf command:
|
||||||
color-scheme = "prefer-dark";
|
# `conf write /org/gnome/desktop/interface/color-scheme "'prefer-dark'"`
|
||||||
|
"org/gnome/desktop/interface" = {
|
||||||
|
color-scheme = "prefer-dark";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue