nixos-configs/modules/tailscale.nix

12 lines
190 B
Nix
Raw Normal View History

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