nix machine / user configurations
1{ lib, ... }: 2{ 3 services.tailscale = { 4 enable = true; 5 port = 41641; 6 # extraUpFlags = [ "--ssh" ]; 7 extraDaemonFlags = [ "--no-logs-no-support" ]; 8 openFirewall = true; 9 }; 10 11 networking.interfaces.tailscale0.useDHCP = lib.mkForce false; 12}