infrastructure/hosts/phoenix.lewd.wtf/services/vikunja.nix

14 lines
257 B
Nix
Raw Normal View History

2024-02-10 18:26:29 +00:00
{ pkgs, ...}:
{
services.vikunja = {
enable = true;
setupNginx = true;
frontendScheme = "https";
frontendHostname = "todo.lewd.wtf";
};
services.nginx.virtualHosts."todo.lewd.wtf" = {
enableACME = true;
forceSSL = true;
};
}