mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
fix: 🐛 Fix NixOS module passing incorrect environment variable
This commit is contained in:
parent
dad99e854d
commit
b67d86dc57
|
|
@ -132,7 +132,7 @@ in {
|
||||||
SyslogIdentifier = "${name}";
|
SyslogIdentifier = "${name}";
|
||||||
|
|
||||||
Environment = [
|
Environment = [
|
||||||
"CONFIG_FILE=${configFile}"
|
"CONFIG_LOCATION=${configFile}"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}) (cfg.nodes.api)
|
}) (cfg.nodes.api)
|
||||||
|
|
@ -169,7 +169,7 @@ in {
|
||||||
SyslogIdentifier = "${name}";
|
SyslogIdentifier = "${name}";
|
||||||
|
|
||||||
Environment = [
|
Environment = [
|
||||||
"CONFIG_FILE=${configFile}"
|
"CONFIG_LOCATION=${configFile}"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}) (cfg.nodes.worker);
|
}) (cfg.nodes.worker);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue