about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorRob Pilling <robpilling@gmail.com>2024-05-06 12:42:02 +0100
committerRob Pilling <robpilling@gmail.com>2024-05-22 07:58:26 +0100
commit5458b62cf785f02ef25f5312da8f2ce172bafcf3 (patch)
tree3a29b4c377a1249d4ab77ece0dbd22dad700bf72 /nixos
parent9c9c3848d41dae2ae83f92dfdc5599917e509b99 (diff)
ebusd: fix argument passing, separate using an equals (`=`)
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;