From a8d302f0d39ac25354c1feb0a27f03e8807af5fe Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 13 Mar 2025 02:23:20 -0400 Subject: [PATCH] global/*: remove pyro.host --- modules/global/networking.nix | 1 - modules/global/ssh.nix | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/modules/global/networking.nix b/modules/global/networking.nix index fefc708..92dd36e 100644 --- a/modules/global/networking.nix +++ b/modules/global/networking.nix @@ -13,7 +13,6 @@ # Tailscale "tailnet.inx.moe" #"tail4c593.ts.net" - "nodes.pyro.host" ]; nameservers = [ # Google Public DNS diff --git a/modules/global/ssh.nix b/modules/global/ssh.nix index 417d416..3330b34 100644 --- a/modules/global/ssh.nix +++ b/modules/global/ssh.nix @@ -33,7 +33,7 @@ with lib; programs.ssh = { extraConfig = with common; '' CanonicalizeHostname yes - CanonicalDomains nodes.pyro.host tailnet.inx.moe + CanonicalDomains tailnet.inx.moe Host rsync.net Hostname ${rsyncnet.host} @@ -45,9 +45,6 @@ with lib; Host inx.moe Port 245 - - Host *.nodes.pyro.host - Port 7976 ''; };