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";