2022-11-24 01:01:25 +00:00
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
# make the tailscale command usable to users
|
|
|
|
environment.systemPackages = [ pkgs.tailscale ];
|
|
|
|
|
|
|
|
# enable the tailscale service
|
|
|
|
services.tailscale.enable = true;
|
2022-11-24 01:03:08 +00:00
|
|
|
|
|
|
|
networking.firewall.checkReversePath = "loose";
|
2022-11-24 01:01:25 +00:00
|
|
|
}
|