Add catppuccin GTK themes

This commit is contained in:
Evie Litherland-Smith 2023-09-07 09:08:25 +01:00
parent f58fe209d8
commit fba7fae3f5

View file

@ -1,28 +1,30 @@
{pkgs, ...}: let { pkgs, ... }:
candy-icon-theme = pkgs.callPackage ./pkgs/candy-icon-theme {};
sweet-folder-theme = pkgs.callPackage ./pkgs/sweet-folder-theme {}; {
in {
home.packages = with pkgs; [ home.packages = with pkgs; [
glib glib
candy-icon-theme
sweet-folder-theme
breeze-gtk
gnome.adwaita-icon-theme gnome.adwaita-icon-theme
hicolor-icon-theme papirus-icon-theme
papirus-folders
]; ];
gtk = { gtk = {
enable = true; enable = true;
cursorTheme = { cursorTheme = {
package = pkgs.catppuccin-cursors.macchiatoDark; package = pkgs.catppuccin-cursors.mochaDark;
name = "Catppuccin-Macchiato-Dark-Cursors"; name = "Catppuccin-Mocha-Dark-Cursors";
}; };
iconTheme = { iconTheme = {
package = sweet-folder-theme; package = pkgs.catppuccin-papirus-folders;
name = "Sweet-Rainbow"; name = "cat-mocha-lavender";
}; };
theme = { theme = {
package = pkgs.sweet; name = "Catppuccin-Mocha-Standard-Lavender";
name = "Sweet-Dark"; package = pkgs.catppuccin-gtk.override {
accents = [ "lavender" ];
size = "standard";
tweaks = [ ];
variant = "mocha";
};
}; };
}; };
} }