fix(nixos): module: wrong separator

This commit is contained in:
2025-10-25 06:50:23 +00:00
parent 450ba9229b
commit af5d46b3f0
2 changed files with 7 additions and 3 deletions

View File

@@ -132,8 +132,8 @@ in {
Type = "simple";
ExecStart = "${self.packages.${system}."sentinèlla"}/bin/probe";
Environment = [
"URLS=${lib.concatStringsSep "," cfg.probe.urls}"
"VOLUMES=${lib.concatStringsSep "," cfg.probe.volumes}"
"URLS=${lib.concatStringsSep " " cfg.probe.urls}"
"VOLUMES=${lib.concatStringsSep " " cfg.probe.volumes}"
"PORT=${builtins.toString cfg.probe.port}"
];
Restart = "always";