nixos/system/services/home-assistant.nix

30 lines
827 B
Nix
Raw Normal View History

2024-07-30 15:06:34 +01:00
{ config, ... }:
{
virtualisation.oci-containers = {
backend = "podman";
containers.homeassistant = {
2024-07-30 15:06:34 +01:00
volumes = [
"/var/lib/home-assistant:/config"
2024-07-30 15:06:34 +01:00
"/run/dbus:/run/dbus:ro"
2024-12-01 13:33:49 +00:00
"/var/lib/syncthing/Music:/music"
"/tmp:/.dockerenv" # TEMP FIX FOR CONTAINER CHECKS
2024-07-30 15:06:34 +01:00
];
environment.TZ = config.time.timeZone;
image = "ghcr.io/home-assistant/home-assistant@sha256:db0f344d5126bfedd7bf18e0bfb8249a9a5e6785e2f6cb3728edbd393fff1981"; # 2024-12-20T10:54:13.805911135Z
2024-07-30 15:06:34 +01:00
extraOptions = [ "--network=host" ];
};
};
networking.firewall = {
allowedTCPPorts = [
1400
1443
];
2024-12-08 09:26:40 +00:00
allowedUDPPorts = [
1400
1443
5353
];
};
services.caddy.virtualHosts."home.xenia.me.uk".extraConfig = "reverse_proxy http://localhost:8123";
}