1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

3 Commits

4 changed files with 20 additions and 7 deletions

View File

@@ -1,9 +1,9 @@
{
"url": "https://cgit.krebsco.de/stockholm",
"rev": "a85b25865a5b4aade9e3ec97871f3e3d553199d6",
"date": "2020-11-10T21:07:09+01:00",
"path": "/nix/store/4n7vv3clsld151pyzjda0xrwxqsqmrcp-stockholm",
"sha256": "117n7a0094n02li325qlv2ly6v4pa186gfbvrw1plyjsl0r85i0f",
"url": "https://github.com/kmein/stockholm",
"rev": "f0325bef7954cb946674050847c6d52112cb658f",
"date": "2020-11-11T07:45:58+01:00",
"path": "/nix/store/lka6fhjfbwdx9bc7lk1bz4gizdv7nrbm-stockholm",
"sha256": "0gbw6n5yq36ysc30afa5d2dbsl2d46f73ms6f0rprdbr4nhdw8l2",
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false

13
configs/gitea.nix Normal file
View File

@@ -0,0 +1,13 @@
{
services.gitea = {
enable = true;
disableRegistration = true;
rootUrl = "https://code.xn--kiern-0qa.de";
appName = "code.kierán.de";
};
services.nginx.virtualHosts."code.xn--kiern-0qa.de" = {
forceSSL = true;
enableACME = true;
locations."/".extraConfig = "proxy_pass http://localhost:3000;";
};
}

View File

@@ -22,7 +22,7 @@ let
};
stockholm = {
ref = "refs/heads/master";
url = "https://cgit.krebsco.de/stockholm";
url = "https://github.com/kmein/stockholm";
path = toString .versions/stockholm.json;
};
retiolum = {

View File

@@ -11,6 +11,7 @@ in
<niveum/configs/nextcloud.nix>
<niveum/configs/save-space.nix>
<niveum/configs/version.nix>
<niveum/configs/gitea.nix>
<niveum/modules/retiolum.nix>
];
@@ -40,7 +41,6 @@ in
networking.firewall.allowedTCPPorts = [ 80 443 ];
services.nginx = {
enable = true;
recommendedGzipSettings = true;