Loading nixos/modules/services/web-apps/vikunja.nix +6 −1 Original line number Diff line number Diff line Loading @@ -45,6 +45,11 @@ in type = types.str; description = "The Hostname under which the frontend is running."; }; address = mkOption { type = types.str; default = ""; description = "The IP address to bind to."; }; port = mkOption { type = types.port; default = 3456; Loading Loading @@ -105,7 +110,7 @@ in ; }; service = { interface = ":${toString cfg.port}"; interface = "${cfg.address}:${toString cfg.port}"; frontendurl = "${cfg.frontendScheme}://${cfg.frontendHostname}/"; }; files = { Loading Loading
nixos/modules/services/web-apps/vikunja.nix +6 −1 Original line number Diff line number Diff line Loading @@ -45,6 +45,11 @@ in type = types.str; description = "The Hostname under which the frontend is running."; }; address = mkOption { type = types.str; default = ""; description = "The IP address to bind to."; }; port = mkOption { type = types.port; default = 3456; Loading Loading @@ -105,7 +110,7 @@ in ; }; service = { interface = ":${toString cfg.port}"; interface = "${cfg.address}:${toString cfg.port}"; frontendurl = "${cfg.frontendScheme}://${cfg.frontendHostname}/"; }; files = { Loading