about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2024-05-24 23:25:28 +0200
committerGitHub <noreply@github.com>2024-05-24 23:25:28 +0200
commit6c42e8745a8e636ccd0b16132c27cd2484b8520f (patch)
tree816e7a6da0a07043099d500d79706f0901e487f8 /nixos
parentb64987ff75142db5e924ebb3749e4c521d566405 (diff)
parent5458b62cf785f02ef25f5312da8f2ce172bafcf3 (diff)
Merge pull request #309517 from bobrippling/fix/ebusd-args
Fix ebusd service argument passing
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/home-automation/ebusd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/home-automation/ebusd.nix b/nixos/modules/services/home-automation/ebusd.nix
index ac9ec06639c13..f5c5479e8eaff 100644
--- a/nixos/modules/services/home-automation/ebusd.nix
+++ b/nixos/modules/services/home-automation/ebusd.nix
@@ -138,7 +138,7 @@ in
       after = [ "network.target" ];
       serviceConfig = {
         ExecStart = let
-          args = cli.toGNUCommandLineShell { } (foldr (a: b: a // b) { } [
+          args = cli.toGNUCommandLineShell { optionValueSeparator = "="; } (foldr (a: b: a // b) { } [
             {
               inherit (cfg) device port configpath scanconfig readonly;
               foreground = true;