From 9053dda57c7db0a5e88d6e9e85fa6fd31df77161 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sat, 31 May 2025 13:59:51 +0200 Subject: [PATCH] kommode/gitea: install the rest of the themes --- hosts/kommode/services/gitea/customization/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/kommode/services/gitea/customization/default.nix b/hosts/kommode/services/gitea/customization/default.nix index 0bbd8dc..0a8da60 100644 --- a/hosts/kommode/services/gitea/customization/default.nix +++ b/hosts/kommode/services/gitea/customization/default.nix @@ -3,7 +3,12 @@ let cfg = config.services.gitea; in { - services.gitea-themes.monokai = pkgs.gitea-theme-monokai; + services.gitea-themes = { + monokai = pkgs.gitea-theme-monokai; + earl-grey = pkgs.gitea-theme-earl-grey; + pitch-black = pkgs.gitea-theme-pitch-black; + catppuccin = pkgs.gitea-theme-catppuccin; + }; systemd.services.gitea-customization = lib.mkIf cfg.enable { description = "Install extra customization in gitea's CUSTOM_DIR";