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