function start_local_tailscaled --description "Run a local instance of the tailscaled daemon"
  # Save the node name to a global variable, then set it in the tab title.
  set -g node_name $argv[1]
  function fish_title
    echo $node_name
  end

  cd ~/repos/scripts
  bash tailscale/start_local_tailscaled.sh $argv[1]
end
