forked from rarias/jungle
14 lines
504 B
Nix
14 lines
504 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.vikunja.enable = true;
|
|
services.vikunja.frontendScheme = "http";
|
|
services.vikunja.frontendHostname = "localhost";
|
|
|
|
# To run vikunja from a subdirectory we need to *sigh* rebuild it with the
|
|
# variable "VIKUNJA_FRONTEND_BASE" set to the subpath.
|
|
# See https://vikunja.io/docs/running-vikunja-in-a-subdirectory/
|
|
# services.vikunja.package = pkgs.vikunja.overrideAttrs (old: {
|
|
# });
|
|
#services.nginx.virtualHosts."jungle.bsc.es".locations."/vikunja".extraConfig
|
|
}
|