fix: 🐛 Fix NixOS module passing incorrect environment variable

This commit is contained in:
Jesse Wierzbinski 2025-04-15 20:31:25 +02:00
parent dad99e854d
commit b67d86dc57
No known key found for this signature in database

View file

@ -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);