mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 20:20:43 +02:00
18 lines
222 B
Nix
18 lines
222 B
Nix
{ ... }:
|
|
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
colorScheme = "dark";
|
|
};
|
|
|
|
dconf = {
|
|
enable = true;
|
|
settings = {
|
|
"org/gnome/desktop/interface" = {
|
|
color-scheme = "prefer-dark";
|
|
};
|
|
};
|
|
};
|
|
}
|