From b67d86dc571bff9adc385d21f64d35ab3e4cd107 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Tue, 15 Apr 2025 20:31:25 +0200 Subject: [PATCH] fix: :bug: Fix NixOS module passing incorrect environment variable --- nix/module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/module.nix b/nix/module.nix index b1ea7faf..ba806ac4 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -132,7 +132,7 @@ in { SyslogIdentifier = "${name}"; Environment = [ - "CONFIG_FILE=${configFile}" + "CONFIG_LOCATION=${configFile}" ]; }; }) (cfg.nodes.api) @@ -169,7 +169,7 @@ in { SyslogIdentifier = "${name}"; Environment = [ - "CONFIG_FILE=${configFile}" + "CONFIG_LOCATION=${configFile}" ]; }; }) (cfg.nodes.worker);