mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
11 lines
310 B
Nix
11 lines
310 B
Nix
|
{
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
}
|