We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a3f316 commit d990365Copy full SHA for d990365
nix/master.nix
@@ -822,9 +822,9 @@ in
822
(lib.mkIf (cfg.accessMode.fullyPrivate.backend == "gitea") {
823
provider = "github";
824
provider-display-name = "Gitea";
825
- login-url = "https://${cfg.gitea.instanceUrl}/login/oauth/authorize";
826
- redeem-url = "https://${cfg.gitea.instanceUrl}/login/oauth/access_token";
827
- validate-url = "https://${cfg.gitea.instanceUrl}/api/v1/user/emails";
+ login-url = "${cfg.gitea.instanceUrl}/login/oauth/authorize";
+ redeem-url = "${cfg.gitea.instanceUrl}/login/oauth/access_token";
+ validate-url = "${cfg.gitea.instanceUrl}/api/v1/user/emails";
828
})
829
];
830
};
0 commit comments