enable tailscaled daemon

This commit is contained in:
2026-06-08 13:10:33 -06:00
parent 74a5629c68
commit b1d4e2565f
2 changed files with 9 additions and 0 deletions

View File

@@ -165,6 +165,14 @@ newgrp docker
sudo systemctl enable docker.service
sudo systemctl start docker.service
# Enable and start Tailscale daemon
if ! systemctl is-enabled tailscaled &> /dev/null; then
sudo systemctl enable tailscaled
fi
if ! systemctl is-active tailscaled &> /dev/null; then
sudo systemctl start tailscaled
fi
# Apply GNOME dconf settings only if the settings file has changed since last run
# (tracked via an MD5 checksum to avoid redundant writes)
SRC="$HOME/.local/share/coredesktop/gnome/gnome-settings.dconf"

View File

@@ -40,6 +40,7 @@ SYSTEM_UTILS=(
openssh
ripgrep
screen
sniffnet
socat
stow
tailscale