Home

infra @0aaaf8ff82fd38043b43a10f7855cbe7925c8c25 - refs - log -
-
https://git.jolheiser.com/infra.git
dragonwell flake
infra / jasmine / homeassistant.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
{
  virtualisation.oci-containers = {
    backend = "podman";
    containers.homeassistant = {
      volumes = [ "home-assistant:/config" ];
      environment.TZ = "America/Chicago";
      image = "ghcr.io/home-assistant/home-assistant:stable"; # Warning: if the tag does not change, the image will not be updated
      extraOptions = [
        "--network=host"
        # "--device=/dev/ttyACM0:/dev/ttyACM0" # Example, change this to match your own hardware
      ];
    };
  };
  networking.firewall.allowedTCPPorts = [
    4001
    8123
  ];
}