nixos/home/hyprland/gtk.nix

29 lines
649 B
Nix
Raw Normal View History

{pkgs, ...}: let
candy-icon-theme = pkgs.callPackage ./pkgs/candy-icon-theme {};
sweet-folder-theme = pkgs.callPackage ./pkgs/sweet-folder-theme {};
in {
home.packages = with pkgs; [
glib
candy-icon-theme
sweet-folder-theme
breeze-gtk
gnome.adwaita-icon-theme
hicolor-icon-theme
];
gtk = {
enable = true;
cursorTheme = {
package = pkgs.catppuccin-cursors.macchiatoDark;
name = "Catppuccin-Macchiato-Dark-Cursors";
};
iconTheme = {
2023-06-13 08:00:42 +01:00
package = sweet-folder-theme;
name = "Sweet-Rainbow";
};
theme = {
package = pkgs.sweet;
name = "Sweet-Dark";
};
};
}