nixos/home/hyprland/gtk.nix
Evie Litherland-Smith 2b9697aad7 Switch to delta icon theme
Remove configure-gtk script now that it's fixed
Update version of delta-icon-theme fro GitHub
2023-09-08 12:27:34 +01:00

31 lines
683 B
Nix

{ pkgs, ... }:
let
catppuccin-gtk-lavender = pkgs.catppuccin-gtk.override {
accents = [ "lavender" ];
size = "standard";
tweaks = [ ];
variant = "mocha";
};
in {
home.packages = with pkgs; [
gnome.adwaita-icon-theme
libsForQt5.breeze-gtk
hicolor-icon-theme
];
gtk = {
enable = true;
cursorTheme = {
package = pkgs.catppuccin-cursors.mochaDark;
name = "Catppuccin-Mocha-Dark-Cursors";
};
iconTheme = {
package = pkgs.callPackage ./pkgs/delta-icon-theme { };
name = "Delta";
};
theme = {
package = catppuccin-gtk-lavender;
name = "Catppuccin-Mocha-Standard-Lavender-dark";
};
};
}