aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2025-07-31 16:44:09 +0200
committerKarel Kočí <cynerd@email.cz>2025-07-31 16:44:09 +0200
commit3b1525c6423db76d95c8693e3d8d9f768f8d7471 (patch)
treecf0d05f7f830deb20965dba25fd5d18aaff61259 /nixos/modules
parent8c3f71ed4b6eda2e5e3f7832abbc912d2d7a9b6c (diff)
downloadnixos-personal-3b1525c6423db76d95c8693e3d8d9f768f8d7471.tar.gz
nixos-personal-3b1525c6423db76d95c8693e3d8d9f768f8d7471.tar.bz2
nixos-personal-3b1525c6423db76d95c8693e3d8d9f768f8d7471.zip
nixos/homeassistant: use latest not stableHEADmaster
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/homeassistant.nix8
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;
};
};