diff --git a/modules/server/containers/apps/influx.nix b/modules/server/containers/apps/influx.nix index 58cfa57..81b7d70 100644 --- a/modules/server/containers/apps/influx.nix +++ b/modules/server/containers/apps/influx.nix @@ -66,7 +66,7 @@ in { trigger = "server"; envFile = config.sops.secrets."INFLUX".path; script = pkgs.writeShellScript "setup" '' - cat > ${serverCfg.path.config}/influxdb/config.json << 'EOF' + cat > ${serverCfg.path.config}/influxdb/config.json << EOF { "DEFAULT_INFLUX_SERVER": "http://${builder.host}:8181", "DEFAULT_INFLUX_DATABASE": "main", @@ -75,7 +75,7 @@ in { } EOF - cat > ${serverCfg.path.config}/influxdb/admin-token.json << 'EOF' + cat > ${serverCfg.path.config}/influxdb/admin-token.json << EOF { "token": "$INFLUXDB_TOKEN", "name": "admin",