This commit is contained in:
2026-01-21 16:30:18 -06:00
parent 69d16e38a8
commit 514e4864ca
5 changed files with 14 additions and 50 deletions

View File

@@ -1,43 +0,0 @@
{ config, lib, ... }: {
options.sysconfig.containers.homeassistant = {
enable = lib.options.mkOption {
type = lib.types.bool;
default = false;
};
};
config = lib.mkIf config.sysconfig.containers.homeassistant.enable {
containers.home-assistant = {
autoStart = true;
privateNetwork = true;
hostAddress = "192.168.100.10";
localAddress = "192.168.100.25";
config = {
services.home-assistant = {
enable = true;
openFirewall = true;
extraComponents = [
"wyoming"
"ollama"
];
config = {
homeassistant.unit_system = "us_customary";
};
configWritable = true;
};
system.stateVersion = "25.05";
};
};
};
}