remove aarch64.nixos.community

This commit is contained in:
zowoq 2023-07-19 07:02:16 +10:00
parent 36296d25a0
commit df043d1486
6 changed files with 3 additions and 30 deletions
modules/nixos

View file

@ -27,10 +27,6 @@
hostNames = [ "darwin03.nix-community.org" ];
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKX7W1ztzAtVXT+NBMITU+JLXcIE5HTEOd7Q3fQNu80S";
};
aarch64-nixos-community = {
hostNames = [ "aarch64.nixos.community" ];
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMUTz5i9u5H2FHNAmZJyoJfIGyUm/HfGhfwnc142L3ds";
};
hetzner-storage-box = {
hostNames = [ "[u348918.your-storagebox.de]:23" ];
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIICf9svRenC/PLKIL9nk6K/pxQgoiFC41wTNvoIncOxs";

View file

@ -1,20 +0,0 @@
{ config, ... }:
{
nix.distributedBuilds = true;
nix.buildMachines = [
{
hostName = "aarch64.nixos.community";
maxJobs = 64;
protocol = "ssh-ng";
sshKey = config.sops.secrets.aarch64_nixos_community.path;
sshUser = "nixcommunity";
system = "aarch64-linux";
supportedFeatures = [
"big-parallel"
"kvm"
"nixos-test"
];
}
];
sops.secrets.aarch64_nixos_community = { };
}