dotfiles/.config/nixos/shared/tailscale.nix
Andrei Jiroh Halili 18b7c4e226 chore(nixos): update configurations and add README
Also set wakatime project name for @hackclub High Seas and
for coding stats

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
2024-12-29 22:16:59 +08:00

17 lines
No EOL
358 B
Nix

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