config/hosts/wings1.nix

18 lines
254 B
Nix
Raw Normal View History

2025-02-05 20:43:42 +01:00
{
hlConfig,
...
}:
rec {
hostname = "wings1";
managed = false;
ip = "192.168.10.190";
traefikRoutes = [
{
name = "${hostname}";
rule = "Host(`wings1.${hlConfig.shortDomain}`)";
target = "http://${ip}:443";
}
];
}