feat: add vikunja

This commit is contained in:
Katharina Heidenreich 2026-04-04 17:13:46 +02:00
commit e38ffbedf4
8 changed files with 145 additions and 89 deletions

View file

@ -0,0 +1,19 @@
let
net = import ../network.nix;
services = import ../services.nix;
in
[
{
type = "proxy";
domain = "vikunja.${net.devices.remote_proxy.domain}";
endpoint = "/";
force_ssl = true;
port = 443;
content = {
type = "service";
ip = net.devices.pi.ip;
port = services.vikunja.port;
proxyWebsockets = true;
};
}
]