23 lines
575 B
Nix
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 ];
|
|
|
|
}
|