mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
15 lines
221 B
Nix
15 lines
221 B
Nix
# ~/nixconfig/modules.new/nixos/common/tailscale.nix
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = "both";
|
|
};
|
|
|
|
networking.firewall.checkReversePath = "loose";
|
|
}
|