31 lines
697 B
Nix
31 lines
697 B
Nix
{ pkgs, ... }:
|
|
let
|
|
catppuccin-gtk = pkgs.catppuccin-gtk.override {
|
|
accents = [ "lavender" ];
|
|
size = "compact";
|
|
tweaks = [ "rimless" ];
|
|
variant = "macchiato";
|
|
};
|
|
in {
|
|
home.packages = with pkgs; [
|
|
gnome.adwaita-icon-theme
|
|
libsForQt5.breeze-gtk
|
|
hicolor-icon-theme
|
|
];
|
|
gtk = {
|
|
enable = true;
|
|
cursorTheme = {
|
|
package = pkgs.catppuccin-cursors.macchiatoLavender;
|
|
name = "Catppuccin-Macchiato-Lavender-Cursors";
|
|
};
|
|
iconTheme = {
|
|
package = pkgs.callPackage ./pkgs/delta-icon-theme { };
|
|
name = "Delta";
|
|
};
|
|
theme = {
|
|
package = catppuccin-gtk;
|
|
name = "Catppuccin-Macchiato-Compact-Lavender-dark";
|
|
};
|
|
};
|
|
}
|