dotfiles/.config/nixos/shared/tailscale.nix
Andrei Jiroh Halili 824366c5dd chore(global): initial commit for nixpkgs branch
Need to commit and push for community help at @hackclub slack
later.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
2024-12-29 19:39:14 +08:00

17 lines
No EOL
337 B
Nix

# This Nix file contains the Tailscale configuration here
# in NixOS, mostly on the side of the daemon and its related
# configurations.
{ ... }:
{
services.tailscale = {
enable = true;
useRoutingFeatures = true;
openFirewall = true;
disableTaildrop = false;
extraDaemonFlags = [
"--verbose 3"
];
};
}