feat(vikunja): enable sso

This commit is contained in:
2026-07-24 21:26:19 +02:00
parent a387a61b50
commit 07f584aee7
3 changed files with 8 additions and 3 deletions
+1
View File
@@ -26,6 +26,7 @@
yamtrack_env = default;
authentik_env = default;
vaultwarden_env = default;
vikunja_env = default;
};
};
}
+4 -1
View File
@@ -1,9 +1,12 @@
{ ... }:
{ config, ... }:
{
services.vikunja = {
enable = true;
port = 8011;
frontendScheme = "http";
frontendHostname = "vikunja.patrickcanal.it";
environmentFiles = [
config.sops.secrets.vikunja_env.path
];
};
}