infrastructure/machines/core-services-01/headscale.nix

9 lines
165 B
Nix
Raw Normal View History

2022-04-26 23:33:59 +02:00
{ ... }:
{
services.headscale = {
enable = true;
serverUrl = "https://tailscale.rz.ens.wtf";
tls.letsencrypt.hostname = "tailscale.rz.ens.wtf";
};
}