add home assistant

This commit is contained in:
2025-03-24 16:28:39 +01:00
parent ac9b6d66cb
commit 3d7906c1b0
2 changed files with 11 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
./freshrss.nix
./glance.nix
./hardware.nix
./homeassistant.nix
./immich.nix
./monitoring
./mpd.nix

View File

@@ -0,0 +1,10 @@
{
virtualisation.oci-containers.containers.homeassistant = {
volumes = [ "home-assistant:/config" ];
environment.TZ = "Europe/Paris";
image = "ghcr.io/home-assistant/home-assistant:stable";
extraOptions = [
"--network=host"
];
};
}