Files
nixos-config/hosts/common/features/tailscale.nix
T
Miguel Palhas c41f1c5c70 wip
2025-07-01 18:33:27 +01:00

10 lines
139 B
Nix

{ pkgs, ... }:
{
services.tailscale.enable = true;
networking.nameservers = [
"100.100.100.100"
"8.8.8.8"
"1.1.1.1"
];
}