This repository has been archived on 2025-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nix-thinkcentre/home/gtk.nix
2025-10-11 19:10:48 +05:00

17 lines
332 B
Nix

# Настройка гтк на темную тему.
{ pkgs, ... }: {
dconf.settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
};
};
gtk = {
enable = true;
theme = {
name = "Adwaita-dark";
package = pkgs.gnome-themes-extra;
};
};
}