11 lines
190 B
Nix
11 lines
190 B
Nix
{ ... }: {
|
|
services = {
|
|
tailscale = {
|
|
enable = true;
|
|
extraUpFlags = [
|
|
"--login-server https://headscale.nelim.org"
|
|
"--operator=matt"
|
|
];
|
|
};
|
|
};
|
|
}
|