Files
nixos-config/home/themes/catppuccin/gtk.nix
Elias Schröter e0fb822650 theme collect & kitty & wallpaper & yazi
Collect all catppuccin theme settings together, set wallpaper using
wpapderd, change console to kitty and install yazi
2026-03-18 11:25:55 +01:00

28 lines
511 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [ dconf ];
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Compact-Pink-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "pink" ];
size = "compact";
tweaks = [ "rimless" ];
variant = "mocha";
};
};
font = {
package = pkgs.fira-code;
name = "Fira Code";
};
iconTheme = {
package = pkgs.oranchelo-icon-theme;
name = "Oranchelo";
};
};
}