2024-05-29 00:15:32 +02:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
pkgs,
|
|
|
|
outputs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
2024-07-03 08:28:12 +02:00
|
|
|
gtk = with pkgs; {
|
2024-05-29 00:15:32 +02:00
|
|
|
enable = true;
|
2024-07-03 08:28:12 +02:00
|
|
|
|
|
|
|
font = {
|
|
|
|
name = "Cantarell";
|
|
|
|
size = 12;
|
|
|
|
package = cantarell-fonts;
|
|
|
|
};
|
|
|
|
|
|
|
|
catppuccin = {
|
|
|
|
icon.enable = true;
|
|
|
|
icon.accent = "blue";
|
|
|
|
icon.flavor = "frappe";
|
|
|
|
};
|
|
|
|
|
|
|
|
theme = {
|
|
|
|
name = "Colloid-Dark-Catppuccin";
|
|
|
|
package = colloid-gtk-theme.override {
|
|
|
|
themeVariants = ["default"];
|
|
|
|
colorVariants = ["dark"];
|
|
|
|
sizeVariants = ["standard"];
|
|
|
|
tweaks = ["catppuccin"];
|
|
|
|
};
|
|
|
|
};
|
2024-05-29 14:00:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
dconf.settings = {
|
|
|
|
# ---------------------- Theming
|
|
|
|
"org/gnome/desktop/background" = {
|
|
|
|
picture-uri = "${outputs.resources.wallpapers}/animals_at_campfire.jpg";
|
|
|
|
picture-uri-dark = "${outputs.resources.wallpapers}/animals_at_campfire.jpg";
|
|
|
|
};
|
|
|
|
|
|
|
|
"org/gnome/shell/extensions/user-theme" = {
|
2024-07-03 08:28:12 +02:00
|
|
|
name = "Colloid-Dark-Catppuccin";
|
2024-05-29 14:00:31 +02:00
|
|
|
};
|
|
|
|
# ---------------------- Theming END
|
2024-05-29 00:15:32 +02:00
|
|
|
};
|
2024-07-03 08:28:12 +02:00
|
|
|
}
|