2024-07-30 15:06:34 +01:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
2024-07-21 18:40:13 +01:00
|
|
|
virtualisation.oci-containers = {
|
|
|
|
backend = "podman";
|
|
|
|
containers.homeassistant = {
|
2024-07-30 15:06:34 +01:00
|
|
|
volumes = [
|
|
|
|
"home-assistant:/config"
|
|
|
|
"/run/dbus:/run/dbus:ro"
|
|
|
|
];
|
2024-07-21 18:40:13 +01:00
|
|
|
environment.TZ = config.time.timeZone;
|
|
|
|
image = "ghcr.io/home-assistant/home-assistant:2024.8.0.dev202407210221";
|
2024-07-30 15:06:34 +01:00
|
|
|
extraOptions = [ "--network=host" ];
|
2024-07-21 18:40:13 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
services.caddy.virtualHosts."home.xenia.me.uk".extraConfig = "reverse_proxy http://localhost:8123";
|
|
|
|
}
|