1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Use services.gitea.settings instead of services.gitea.extraConfig

This commit is contained in:
Stefan Ellmauthaler 2022-10-25 17:16:40 +02:00
parent 0a01361734
commit 05eb1a3f4a
Failed to extract signature

View File

@ -28,9 +28,11 @@ with lib; {
domain = "git.ellmauthaler.net"; domain = "git.ellmauthaler.net";
rootUrl = "https://git.ellmauthaler.net"; rootUrl = "https://git.ellmauthaler.net";
httpPort = 3001; httpPort = 3001;
extraConfig = '' settings = {
DEFAULT_BRANCH = main repository = {
''; DEFAULT_BRANCH = "main";
};
};
}; };
}; };
} }