about summary refs log tree commit diff
path: root/nixos/modules/services/home-automation
diff options
context:
space:
mode:
authorYt <raphael@megzari.com>2024-03-02 11:46:35 +0000
committerGitHub <noreply@github.com>2024-03-02 11:46:35 +0000
commit492678349b1cf01f9b3ae3baf60600ddd966fc39 (patch)
treecb22a627c917b436c4a42ba83ea141c1f1fd8160 /nixos/modules/services/home-automation
parentd2c93188e2b954519f218cc3c4f33bc66a5804d3 (diff)
parent979ae4c6e511395407299c088f96502801588d88 (diff)
Merge pull request #292412 from bobrippling/fix/ebusd-logging
ebusd: fix logging overrides
Diffstat (limited to 'nixos/modules/services/home-automation')
-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 519d116e0e55c..f68a8bdb6bfa2 100644
--- a/nixos/modules/services/home-automation/ebusd.nix
+++ b/nixos/modules/services/home-automation/ebusd.nix
@@ -15,12 +15,12 @@ let
     "--port=${toString cfg.port}"
     "--configpath=${cfg.configpath}"
     "--scanconfig=${cfg.scanconfig}"
+    "--log=all:${cfg.logs.all}"
     "--log=main:${cfg.logs.main}"
     "--log=network:${cfg.logs.network}"
     "--log=bus:${cfg.logs.bus}"
     "--log=update:${cfg.logs.update}"
     "--log=other:${cfg.logs.other}"
-    "--log=all:${cfg.logs.all}"
   ] ++ lib.optionals cfg.readonly [
     "--readonly"
   ] ++ lib.optionals cfg.mqtt.enable [