config/hosts/home-assistant.nix

18 lines
255 B
Nix
Raw Permalink Normal View History

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