vikunja: add address option (#481406)

This commit is contained in:
Adam C. Stephens
2026-02-06 19:36:37 +00:00
committed by GitHub
+6 -1
View File
@@ -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;
@@ -105,7 +110,7 @@ in
;
};
service = {
interface = ":${toString cfg.port}";
interface = "${cfg.address}:${toString cfg.port}";
frontendurl = "${cfg.frontendScheme}://${cfg.frontendHostname}/";
};
files = {