nixos/home/hyprland/gtk.nix

31 lines
683 B
Nix
Raw Normal View History

{ 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 = {
2023-09-07 09:08:25 +01:00
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";
};
};
}