10 lines
246 B
Nix
10 lines
246 B
Nix
{ config, pkgs, ... }: {
|
|
# make the tailscale command usable to users
|
|
environment.systemPackages = [ pkgs.tailscale ];
|
|
|
|
# enable the tailscale service
|
|
services.tailscale.enable = true;
|
|
|
|
networking.firewall.checkReversePath = "loose";
|
|
}
|