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
services/vikunja.nix Normal file
View file

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