1
0
mirror of https://github.com/kmein/niveum synced 2026-03-28 23:31:07 +01:00

feat(passport): init for makanek

This commit is contained in:
2022-05-22 11:47:59 +02:00
parent 9a3499ab6c
commit 44efc4dfa1
22 changed files with 338 additions and 2 deletions

View File

@@ -1,10 +1,11 @@
let
inherit (import <niveum/lib>) sshPort;
domain = "https://code.kmein.de";
in {
services.gitea = {
enable = true;
disableRegistration = true;
rootUrl = "https://code.kmein.de";
rootUrl = domain;
appName = "code.kmein.de";
ssh.clonePort = sshPort;
};
@@ -13,4 +14,12 @@ in {
enableACME = true;
locations."/".extraConfig = "proxy_pass http://localhost:3000;";
};
niveum.passport.services = [
{
link = domain;
title = "Gitea";
description = "hosts a couple of <tt>git</tt> repos. Registration is disabled.";
}
];
}