nixos-config/machines/chungus/hass.nix
2024-10-09 21:27:44 +09:00

23 lines
575 B
Nix

{
config,
lib,
pkgs,
...
}:
{
virtualisation.oci-containers = {
containers.homeassistant = {
volumes = [ "/srv2/home-assistant:/config" ];
environment.TZ = "Europe/Berlin";
image = "ghcr.io/home-assistant/home-assistant:stable"; # Warning: if the tag does not change, the image will not be updated
extraOptions = [ "--network=host" ];
};
};
networking.firewall.interfaces.wg0.allowedTCPPorts = [ 8123 ];
networking.firewall.interfaces.wg0.allowedUDPPorts = [ 8123 ];
healthchecks.closed.retiolum.ports.hass = [ 8123 ];
}