mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 04:59:42 +00:00
14 lines
356 B
Nix
14 lines
356 B
Nix
{
|
|
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'"`
|
|
"org/gnome/desktop/interface" = {
|
|
color-scheme = "prefer-dark";
|
|
};
|
|
};
|
|
};
|
|
}
|