Evie Litherland-Smith
2b9697aad7
Remove configure-gtk script now that it's fixed Update version of delta-icon-theme fro GitHub
31 lines
683 B
Nix
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";
|
|
};
|
|
};
|
|
}
|