Add catppuccin GTK themes
This commit is contained in:
parent
f58fe209d8
commit
fba7fae3f5
|
@ -1,28 +1,30 @@
|
|||
{pkgs, ...}: let
|
||||
candy-icon-theme = pkgs.callPackage ./pkgs/candy-icon-theme {};
|
||||
sweet-folder-theme = pkgs.callPackage ./pkgs/sweet-folder-theme {};
|
||||
in {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
glib
|
||||
candy-icon-theme
|
||||
sweet-folder-theme
|
||||
breeze-gtk
|
||||
gnome.adwaita-icon-theme
|
||||
hicolor-icon-theme
|
||||
papirus-icon-theme
|
||||
papirus-folders
|
||||
];
|
||||
gtk = {
|
||||
enable = true;
|
||||
cursorTheme = {
|
||||
package = pkgs.catppuccin-cursors.macchiatoDark;
|
||||
name = "Catppuccin-Macchiato-Dark-Cursors";
|
||||
package = pkgs.catppuccin-cursors.mochaDark;
|
||||
name = "Catppuccin-Mocha-Dark-Cursors";
|
||||
};
|
||||
iconTheme = {
|
||||
package = sweet-folder-theme;
|
||||
name = "Sweet-Rainbow";
|
||||
package = pkgs.catppuccin-papirus-folders;
|
||||
name = "cat-mocha-lavender";
|
||||
};
|
||||
theme = {
|
||||
package = pkgs.sweet;
|
||||
name = "Sweet-Dark";
|
||||
name = "Catppuccin-Mocha-Standard-Lavender";
|
||||
package = pkgs.catppuccin-gtk.override {
|
||||
accents = [ "lavender" ];
|
||||
size = "standard";
|
||||
tweaks = [ ];
|
||||
variant = "mocha";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue