this repo has no description
4
fork

Configure Feed

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

fix deprecated options

+4 -2
+4 -2
hosts/wolumonde/modules/gitea.nix
··· 1 1 {config, ...}: { 2 2 services.gitea = { 3 3 enable = true; 4 - cookieSecure = true; 5 - disableRegistration = true; 6 4 domain = "git.gaze.systems"; 7 5 rootUrl = "https://git.gaze.systems/"; 8 6 httpPort = 3001; 7 + settings = { 8 + service.DISABLE_REGISTRATION = true; 9 + session.COOKIE_SECURE = true; 10 + }; 9 11 }; 10 12 11 13 services.nginx.virtualHosts."git.gaze.systems" = {