Configure and use a remote builder for my Pi

This commit is contained in:
Gene Liverman 2025-09-24 12:53:56 -04:00
parent b7d5ec11ad
commit f417c8a705

View file

@ -41,14 +41,20 @@
};
};
nix.buildMachines = [
{
hostName = "hetznix02.technicalissues.us";
sshUser = "${username}";
protocol = "ssh-ng";
systems = ["aarch64-linux"];
}
];
nix = {
buildMachines = [
{
hostName = "hetznix02.technicalissues.us";
sshUser = "${username}";
sshKey = "/home/${username}/id_ed25519";
protocol = "ssh-ng";
systems = ["aarch64-linux"];
maxJobs = 3;
speedFactor = 3;
}
];
distributedBuilds = true;
};
nixpkgs.overlays = [
(final: super: {