nixos-configs/modules/tailscale.nix

12 lines
188 B
Nix
Raw Normal View History

2023-11-22 15:33:16 -05:00
{...}: {
2023-10-20 13:03:36 -04:00
services = {
tailscale = {
enable = true;
extraUpFlags = [
"--login-server https://headscale.nelim.org"
"--operator=matt"
];
};
};
}