feat(bomba): add vikunja

This commit is contained in:
2026-05-24 13:56:34 +02:00
parent 2f6f1dd405
commit 1a146572c7
3 changed files with 13 additions and 0 deletions
+3
View File
@@ -18,6 +18,9 @@
"octoprint.patrickcanal.it".extraConfig = ''
reverse_proxy :${toString config.services.octoprint.port}
'';
"vikunja.patrickcanal.it".extraConfig = ''
reverse_proxy :${toString config.services.vikunja.port}
'';
"jellyfin.patrickcanal.it".extraConfig = ''
reverse_proxy :${toString config.nixflix.jellyfin.network.internalHttpPort}
'';
+1
View File
@@ -8,6 +8,7 @@
./octoprint.nix
./teamspeak.nix
./vaultwarden.nix
./vikunja.nix
];
services.openssh.enable = true;
+9
View File
@@ -0,0 +1,9 @@
{ ... }:
{
services.vikunja = {
enable = true;
port = 8011;
frontendScheme = "http";
frontendHostname = "vikunja.patrickcanal.it";
};
}