Files
nix-config/modules/hm/gtk.nix
Felix Schulze 0c008dcf35 hurricane: 196 current 2025-08-11 19:55:09 25.05.20250809.c5f08b6 6.16.0 *
GTK theme, rofi fixes and fastfetch
hurricane: 197 current  2025-08-11 20:21:36  25.05.20250809.c5f08b6     6.16.0                          *
2025-08-11 21:46:08 +02:00

35 lines
819 B
Nix

{pkgs, ...}: {
gtk = {
enable = true;
theme = {
name = "Colloid-Blue-Dark-Gruvbox";
package = pkgs.colloid-gtk-theme.override {
colorVariants = ["dark"];
themeVariants = ["default"]; # Blue
tweaks = [
"gruvbox"
"rimless"
"float"
];
};
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme.override {color = "black";};
};
};
# ================================
# GTK THEMING CONFIGURATION
# ================================
# dconf: Configure GTK applications and GNOME settings
dconf = {
enable = true;
settings = {
"org/gnome/desktop/interface" = {
gtk-theme = "Colloid-Blue-Dark-Gruvbox";
color-scheme = "prefer-dark";
};
};
};
}