hurricane: 199 current 2025-08-11 22:15:21 25.05.20250809.c5f08b6 6.16.0 * hurricane: 200 current 2025-08-11 22:17:20 25.05.20250809.c5f08b6 6.16.0 * hurricane: 201 current 2025-08-11 22:18:09 25.05.20250809.c5f08b6 6.16.0 * hurricane: 202 current 2025-08-11 22:24:34 25.05.20250809.c5f08b6 6.16.0 * hurricane: 203 current 2025-08-11 22:31:33 25.05.20250809.c5f08b6 6.16.0 * working gruvbox dark theme (looks a bit weird tho) hurricane: 204 current 2025-08-11 22:38:43 25.05.20250809.c5f08b6 6.16.0 * hurricane: 205 current 2025-08-11 22:39:55 25.05.20250809.c5f08b6 6.16.0 * Finally working theme
34 lines
762 B
Nix
34 lines
762 B
Nix
{pkgs, ...}: {
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "Colloid-Green-Dark-Gruvbox";
|
|
package = pkgs.colloid-gtk-theme.override {
|
|
colorVariants = ["dark"];
|
|
themeVariants = ["green"];
|
|
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" = {
|
|
color-scheme = "prefer-dark";
|
|
};
|
|
};
|
|
};
|
|
}
|