2 files changed,
18 insertions(+),
0 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2026-02-21 01:49:58 +0200
Parent:
9c9c13c
jump to
| M | nix/hosts/thought/default.nix |
| A | nix/modules/vikunja.nix |
A
nix/modules/vikunja.nix
··· 1 +{ ... }: 2 +{ 3 + services.caddy.virtualHosts."vikunja.olexsmir.xyz".extraConfig = '' 4 + reverse_proxy localhost:3456 5 + ''; 6 + 7 + services.vikunja = { 8 + enable = true; 9 + frontendScheme = "https"; 10 + frontendHostname = "vikunja.olexsmir.xyz"; 11 + settings = { 12 + service = { 13 + enableregistration = true; 14 + }; 15 + }; 16 + }; 17 +}