config/hosts/home-assistant.nix

19 lines
255 B
Nix
Raw Normal View History

2025-02-05 16:19:19 +01:00
{
hlConfig,
...
}:
rec {
hostname = "homeassistant";
managed = false;
ip = "192.168.10.98";
traefikRoutes = [
{
name = "${hostname}";
rule = "Host(`home.${hlConfig.domain}`)";
target = "http://${ip}:8123";
}
];
}