We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4bc1a06 + b7786d9 commit 8ea8ad0Copy full SHA for 8ea8ad0
1 file changed
nixos/modules/services/web-apps/vikunja.nix
@@ -45,6 +45,11 @@ in
45
type = types.str;
46
description = "The Hostname under which the frontend is running.";
47
};
48
+ address = mkOption {
49
+ type = types.str;
50
+ default = "";
51
+ description = "The IP address to bind to.";
52
+ };
53
port = mkOption {
54
type = types.port;
55
default = 3456;
@@ -105,7 +110,7 @@ in
105
110
;
106
111
107
112
service = {
108
- interface = ":${toString cfg.port}";
113
+ interface = "${cfg.address}:${toString cfg.port}";
109
114
frontendurl = "${cfg.frontendScheme}://${cfg.frontendHostname}/";
115
116
files = {
0 commit comments