config/hosts/nix-test.nix

20 lines
296 B
Nix
Raw Normal View History

{
roles,
hlConfig,
}:
{
hostname = "nix-test";
managed = true;
ip = "192.168.10.99";
roles = with roles; [
traefik
sonarr
];
config = {
2025-02-03 17:34:57 +01:00
sonarr.domain = "service1.${hlConfig.domain}";
traefik.wildcardDomains = [ hlConfig.domain ];
};
stateVersion = "24.05";
}