Add Tailscale, remove WireGuard and old VPS references

- Enable Tailscale on NixOracle and Nixos
- Add SSH matchBlock for Termux (pixel-7a, port 8022)
- Remove extraHosts entries for vps and NixOracle
- Remove WireGuard config, secrets and age key

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ltadeu6 2026-05-26 17:42:40 -03:00
parent 4018598451
commit 6b3f8709a1
No known key found for this signature in database
GPG key ID: FB9FDAB6B6F3418D
5 changed files with 18 additions and 27 deletions

View file

@ -467,4 +467,16 @@ PY
};
programs.home-manager.enable = true;
programs.ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks = {
termux = {
hostname = "pixel-7a";
user = "u0_a254";
port = 8022;
};
};
};
}