Removes whitby DNS records and other related configuration that is no longer required now that whitby is gone. whitby served us well. RIP. This resolves b/433. Change-Id: I56fe6f88cde9112fc3bfc79758ac33e88a743422 Reviewed-on: https://cl.tvl.fyi/c/depot/+/13117 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su>
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			755 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			755 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# Configure public keys for SSH hosts known to TVL.
 | 
						|
{ ... }:
 | 
						|
 | 
						|
{
 | 
						|
  programs.ssh.knownHosts = {
 | 
						|
    sanduny = {
 | 
						|
      hostNames = [ "sanduny.tvl.su" ];
 | 
						|
      publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOag0XhylaTVhmT6HB8EN2Fv5Ymrc4ZfypOXONUkykTX";
 | 
						|
    };
 | 
						|
 | 
						|
    bugry = {
 | 
						|
      hostNames = [ "bugry.tvl.fyi" ];
 | 
						|
      publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGqG6sITyJ/UsQ/RtYqmmMvTT4r4sppadoQIz5SvA+5J";
 | 
						|
    };
 | 
						|
 | 
						|
    nevsky = {
 | 
						|
      hostNames = [ "nevsky.tvl.fyi" ];
 | 
						|
      publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHQe7M+G8Id3ZD7j+I07TCUV1o12q1vpsOXHRlcPSEfa";
 | 
						|
    };
 | 
						|
 | 
						|
    github = {
 | 
						|
      hostNames = [ "github.com" ];
 | 
						|
      publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |