config/hosts/pds.nix

20 lines
336 B
Nix
Raw Normal View History

2025-02-05 20:43:42 +01:00
{
hlConfig,
...
}:
rec {
hostname = "pds";
managed = false;
ip = "192.168.10.174";
traefikRoutes = [
{
name = "${hostname}";
rule = "Host(`${hlConfig.domain}`) || HostRegexp(`.+${
builtins.replaceStrings [ "." ] [ "\\." ] hlConfig.domain
}`)";
target = "http://${ip}:3000";
}
];
}