mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-11 04:48:25 -07:00
17 lines
274 B
Nix
17 lines
274 B
Nix
# ~/nixconfig/modules.new/nixos/common/tailscale.nix
|
|
{
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
services.tailscale = {
|
|
enable = true;
|
|
useRoutingFeatures = "both";
|
|
package = unstablePkgs.tailscale;
|
|
};
|
|
|
|
networking.firewall.checkReversePath = "loose";
|
|
}
|