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

14
config/endpoints/web.nix Normal file
View file

@ -0,0 +1,14 @@
let
net = import ../network.nix;
web = import ../../intermediate/web.nix;
in
[
{
type = "web";
domain = net.devices.remote_proxy.domain;
endpoint = "/";
force_ssl = true;
port = 443;
content = web.storePayloads.home;
}
]