{ 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"; }; }; }