2023-06-19 15:22:41 +01:00
|
|
|
{pkgs, ...}: let
|
2023-06-12 10:39:46 +01:00
|
|
|
candy-icon-theme = pkgs.callPackage ./pkgs/candy-icon-theme {};
|
|
|
|
sweet-folder-theme = pkgs.callPackage ./pkgs/sweet-folder-theme {};
|
2023-05-24 07:31:31 +01:00
|
|
|
in {
|
2023-06-20 15:26:07 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
glib
|
2023-06-12 10:39:46 +01:00
|
|
|
candy-icon-theme
|
|
|
|
sweet-folder-theme
|
2023-06-20 15:26:07 +01:00
|
|
|
breeze-gtk
|
|
|
|
gnome.adwaita-icon-theme
|
|
|
|
hicolor-icon-theme
|
2023-06-02 11:51:08 +01:00
|
|
|
];
|
2023-04-11 13:01:23 +01:00
|
|
|
gtk = {
|
|
|
|
enable = true;
|
|
|
|
cursorTheme = {
|
|
|
|
package = pkgs.catppuccin-cursors.macchiatoDark;
|
|
|
|
name = "Catppuccin-Macchiato-Dark-Cursors";
|
|
|
|
};
|
2023-04-29 18:00:03 +01:00
|
|
|
iconTheme = {
|
2023-06-13 08:00:42 +01:00
|
|
|
package = sweet-folder-theme;
|
2023-06-02 11:51:08 +01:00
|
|
|
name = "Sweet-Rainbow";
|
2023-04-29 18:00:03 +01:00
|
|
|
};
|
2023-04-11 13:01:23 +01:00
|
|
|
theme = {
|
2023-06-02 11:51:08 +01:00
|
|
|
package = pkgs.sweet;
|
|
|
|
name = "Sweet-Dark";
|
2023-04-11 13:01:23 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|