mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 17:37:43 -04:00
Configure and use a remote builder for my Pi
This commit is contained in:
parent
b7d5ec11ad
commit
f417c8a705
1 changed files with 14 additions and 8 deletions
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue