From 915695cb0be06cb288d38a992f46bcb5aac44ee2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sat, 22 Jul 2023 23:43:34 +0200 Subject: [PATCH] feat(home-assistant): activate zigbee dongle --- systems/zaatar/home-assistant.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/zaatar/home-assistant.nix b/systems/zaatar/home-assistant.nix index d5eaa82..b2ecc7e 100644 --- a/systems/zaatar/home-assistant.nix +++ b/systems/zaatar/home-assistant.nix @@ -26,12 +26,12 @@ in { virtualisation.oci-containers = { backend = "podman"; containers.homeassistant = { - volumes = ["home-assistant:/config"]; + volumes = ["home-assistant.bak:/config"]; environment.TZ = "Europe/Berlin"; image = "ghcr.io/home-assistant/home-assistant:stable"; extraOptions = [ "--network=host" - # "--device=/dev/ttyUSB0:/dev/ttyACM0" # Example, change this to match your own hardware + "--device=/dev/ttyACM0:/dev/ttyACM0" # Example, change this to match your own hardware ]; }; };