diff options
Diffstat (limited to 'nixos/modules')
-rw-r--r-- | nixos/modules/homeassistant.nix | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/nixos/modules/homeassistant.nix b/nixos/modules/homeassistant.nix index 000e6c4..f7ebe9c 100644 --- a/nixos/modules/homeassistant.nix +++ b/nixos/modules/homeassistant.nix @@ -25,13 +25,9 @@ in { containers.homeassistant = { volumes = ["home-assistant:/config" "/run/dbus:/run/dbus:ro"]; environment.TZ = "Europe/Prague"; - image = "ghcr.io/home-assistant/armv7-homeassistant:stable"; + image = "ghcr.io/home-assistant/armv7-homeassistant:latest"; extraOptions = - [ - "--privileged" - "--pull=always" - "--network=host" - ] + ["--privileged" "--network=host"] ++ cnf.extraOptions; }; }; |