10 lines
139 B
Nix
10 lines
139 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.tailscale.enable = true;
|
|
networking.nameservers = [
|
|
"100.100.100.100"
|
|
"8.8.8.8"
|
|
"1.1.1.1"
|
|
];
|
|
}
|