home/nix/home/theme.nix
2024-04-22 17:42:07 +02:00

37 lines
737 B
Nix

{ pkgs, ... }:
{
gtk = {
enable = true;
# The names need to be exact.
# Use something like lxappearance[-gtk2] to get them.
theme = {
name = "Catppuccin-Macchiato-Standard-Blue-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "blue" ];
tweaks = [ "rimless" ];
variant = "macchiato";
};
};
cursorTheme = {
name = "Catppuccin-Macchiato-Dark-Cursors";
package = pkgs.catppuccin-cursors.macchiatoDark;
size = 24;
};
iconTheme = {
name = "Papirus-Dark";
package =
pkgs.catppuccin-papirus-folders.override { flavor = "macchiato"; };
};
};
qt = {
enable = true;
platformTheme.name = "gtk";
};
}