Compare commits

..

1 Commits

Author SHA1 Message Date
h7x4
ba73075ed3 WIP: fix bluemap markers 2025-12-30 16:39:22 +09:00
3 changed files with 5 additions and 24 deletions

View File

@@ -5,7 +5,6 @@
(fp /base)
./services/alps.nix
./services/bluemap.nix
./services/idp-simplesamlphp
./services/kerberos.nix

View File

@@ -1,22 +0,0 @@
{ config, lib, ... }:
let
cfg = config.services.alps;
in
{
services.alps = {
enable = true;
theme = "sourcehut";
smtps.host = "smtp.pvv.ntnu.no";
imaps.host = "imap.pvv.ntnu.no";
bindIP = "127.0.0.1";
};
services.nginx.virtualHosts."alps.pvv.ntnu.no" = lib.mkIf cfg.enable {
enableACME = true;
forceSSL = true;
kTLS = true;
locations."/" = {
proxyPass = "http://${cfg.bindIP}:${toString cfg.port}";
};
};
}

View File

@@ -58,7 +58,11 @@ in {
max-y = 90;
}];
marker-sets = {
_includes = [ (format.lib.mkInclude "${bluemap-export}/nether.hocon") ];
_includes = [ (format.lib.mkInclude {
required = true;
type = "file";
value = "${bluemap-export}/nether.hocon";
}) ];
};
};
};