nixos/home/desktop/gtk.nix

25 lines
527 B
Nix
Raw Normal View History

{
2023-05-17 17:10:18 +01:00
pkgs,
config,
...
}: let
delta = pkgs.callPackage ./pkgs/delta-icon-theme {};
in {
gtk = {
enable = true;
cursorTheme = {
package = pkgs.catppuccin-cursors.macchiatoDark;
name = "Catppuccin-Macchiato-Dark-Cursors";
};
iconTheme = {
package = delta.delta-icon-theme;
name = "Delta";
};
theme = {
package = pkgs.catppuccin-gtk;
name = "Catppuccin-Frappe-Standard-Blue-Dark";
};
2023-04-19 09:27:55 +01:00
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
};
}