nix-box-june: remove nix-box-june as its being decommissioned
nix-infra is built back in general, so remove nix-box-june as well.
This commit is contained in:
		
					parent
					
						
							
								02328a8ba8
							
						
					
				
			
			
				commit
				
					
						fd2414ec91
					
				
			
		
					 7 changed files with 0 additions and 116 deletions
				
			
		|  | @ -1,7 +0,0 @@ | |||
| { config, pkgs, ... }: | ||||
| 
 | ||||
| { | ||||
|   networking.hostName = "nix-box-june"; | ||||
| 
 | ||||
|   system.stateVersion = "23.11"; | ||||
| } | ||||
|  | @ -1,10 +0,0 @@ | |||
| { config, pkgs, ... }: | ||||
| 
 | ||||
| { | ||||
|   imports = [ | ||||
|     ./configuration.nix | ||||
|     ./emulated-systems.nix | ||||
|     ./networking.nix | ||||
|     ./users.nix | ||||
|   ]; | ||||
| } | ||||
|  | @ -1,5 +0,0 @@ | |||
| { config, pkgs, ... }: | ||||
| 
 | ||||
| { | ||||
|   boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; | ||||
| } | ||||
|  | @ -1,22 +0,0 @@ | |||
| { ... }: | ||||
| 
 | ||||
| { | ||||
|   networking = { | ||||
|     interfaces.net0 = { | ||||
|       ipv4.addresses = [ | ||||
|         { | ||||
|           address = "172.31.17.158"; | ||||
|           prefixLength = 25; | ||||
|         } | ||||
|       ]; | ||||
|     }; | ||||
|     defaultGateway = "172.31.17.129"; | ||||
|     nameservers = [ "212.12.50.158" "192.76.134.90" ]; | ||||
|     search = [ "hamburg.ccc.de" ]; | ||||
|   }; | ||||
| 
 | ||||
|   systemd.network.links."10-net0" = { | ||||
|     matchConfig.MACAddress = "BC:24:11:6A:33:5F"; | ||||
|     linkConfig.Name = "net0"; | ||||
|   }; | ||||
| } | ||||
|  | @ -1,59 +0,0 @@ | |||
| { lib, ... }: | ||||
| 
 | ||||
| { | ||||
|   users.users = { | ||||
|     chaos.openssh.authorizedKeys.keys = lib.mkForce [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOqCxniUEAZAYqL5zbisFfYcQx+7iDRrMo4Pz4uWXq5b julian@01_id_ed25519" ]; | ||||
|     colmena-deploy.openssh.authorizedKeys.keys = lib.mkForce [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOqCxniUEAZAYqL5zbisFfYcQx+7iDRrMo4Pz4uWXq5b julian@01_id_ed25519" ]; | ||||
| 
 | ||||
|     djerun = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ | ||||
|         "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGWXk9N9GoDyvaB0mnX448IvzKKsMv0eFZKvjqmsJ3In djerun@chaos.ferrum.local" | ||||
|         "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINQsu6WSAXsF45wGmw2spQUWopsgioUuFI8hKLBW/WVk djerun@chaos-noc.ferrum.local" | ||||
|       ]; | ||||
|     }; | ||||
|     june = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOqCxniUEAZAYqL5zbisFfYcQx+7iDRrMo4Pz4uWXq5b julian@01_id_ed25519" ]; | ||||
|     }; | ||||
|     jtbx = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIBQgnQAq6FUSDK8bxtYPjx3oRCAKG+xy9J3Gas2ztJk jannik@Magrathea.local" ]; | ||||
|     }; | ||||
|     dario = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPZtJwNPEIfNsAxBfWgxAeoKX1ajORPvs6L5S+qipJ7J dario@ccchh" ]; | ||||
|     }; | ||||
|     yuri = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ | ||||
|         "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDdk3FLQRoCWxdOxg4kHcPqAu3QQOs/rY9na2Al2ilGl yuri@violet" | ||||
|         "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJEvM35w+UaSpDTuaG5pGPgfHcfwscr+wSZN9Z5Jle82 yuri@kiara" | ||||
|       ]; | ||||
|     }; | ||||
|     max = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINHNGDzZqmiFUH75oq1npZTyxV0B7eSJES/29UJxTXBc max@iridium" ]; | ||||
|     }; | ||||
|     haegar = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMhWTkvLI/rp6eyTemuFZRbt2xxRtal7fu668nnb/ekU haegar@aurora" ]; | ||||
|     }; | ||||
|     stb = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgVuX9phyXImxqvof+49UXhiSQ+VGizeU4LrPcZY1Hy stb@lassitu.de 20230418" ]; | ||||
|     }; | ||||
|     hansenerd = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBxujzHK49IBtYKPgnTCDQEiIxgzzlQ846tmU+6TcMIi hansenerd" ]; | ||||
|     }; | ||||
|     echtnurich = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOWWxkGFje1CJbZTB2Kv8hxZpvRR8qyw2IarRIHnQj3+ echtnurich" ]; | ||||
|     }; | ||||
|     c6ristian = { | ||||
|       isNormalUser = true; | ||||
|       openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOgfWcCrsVSXvYEssbfMOy2DnfkGSx+ZRnPLtjVNSxbf c6ristian" ]; | ||||
|     }; | ||||
|   }; | ||||
| } | ||||
|  | @ -15,9 +15,6 @@ | |||
|     "forgejo-actions-runner": { | ||||
|       "targetHostname": "forgejo-actions-runner-intern.hamburg.ccc.de" | ||||
|     }, | ||||
|     "nix-box-june": { | ||||
|       "targetHostname": "nix-box-june-intern.hamburg.ccc.de" | ||||
|     }, | ||||
|     "mjolnir": { | ||||
|       "targetHostname": "mjolnir-intern.hamburg.ccc.de" | ||||
|     }, | ||||
|  |  | |||
							
								
								
									
										10
									
								
								flake.nix
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								flake.nix
									
										
									
									
									
								
							|  | @ -130,16 +130,6 @@ | |||
|           ]; | ||||
|         }; | ||||
| 
 | ||||
|         nix-box-june = nixpkgs.lib.nixosSystem { | ||||
|           inherit system specialArgs; | ||||
|           modules = [ | ||||
|             self.nixosModules.common | ||||
|             self.nixosModules.proxmox-vm | ||||
|             self.nixosModules.prometheus-exporter | ||||
|             ./config/hosts/nix-box-june | ||||
|           ]; | ||||
|         }; | ||||
| 
 | ||||
|         yate = nixpkgs.lib.nixosSystem { | ||||
|           inherit system specialArgs; | ||||
|           modules = [ | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue