this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add rst support to gitea (maybe)

+8
+8
profiles/gitea/default.nix
··· 7 7 domain = "git.sealight.xyz"; 8 8 rootUrl = "https://git.sealight.xyz"; 9 9 httpPort = 3001; 10 + extraConfig = '' 11 + [markup.restructuredtext] 12 + ENABLED = true 13 + FILE_EXTENSIONS = .rst 14 + RENDER_COMMAND = rst2html.py 15 + IS_INPUT_FILE = false 16 + ''; 10 17 database = { 11 18 type = "postgres"; 12 19 # passwordFile = "/run/secrets/gitea-dbpass"; # TODO supplied by agenix ··· 22 29 }; 23 30 }; 24 31 32 + environment.systemPackages = [ pkgs.docutils ]; 25 33 26 34 services.postgresql = { 27 35 enable = true; # Ensure postgresql is enabled