nixos-config/tailscale.nix

10 lines
246 B
Nix
Raw Normal View History

2022-11-24 02:01:25 +01: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 02:03:08 +01:00
networking.firewall.checkReversePath = "loose";
2022-11-24 02:01:25 +01:00
}