feat: add wekan

This commit is contained in:
Katharina Heidenreich 2026-03-17 19:27:26 +01:00
parent df9367d12f
commit d06fb16f44
3 changed files with 31 additions and 0 deletions

View file

@ -9,5 +9,6 @@
./unbound.nix
./autossh.nix
./continuwuity.nix
./wekan.nix
];
}

13
services/wekan.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, pkgs, ... }:
let
net = import ../data/network.nix;
in
{
services.vikunja = {
enable = true;
frontendHostname = "wekan";
frontendScheme = "http";
port = 8081;
};
}