mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 13:42:05 +00:00
17 lines
337 B
Nix
17 lines
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"
|
||
|
];
|
||
|
};
|
||
|
}
|