added big-parallel feature

This commit is contained in:
Julien Malka 2023-05-13 21:33:35 +02:00
parent 09030fadca
commit 0ea363da23
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -110,6 +110,28 @@
boot.binfmt.emulatedSystems = [ "i686-linux" ];
nix = {
distributedBuilds = true;
buildMachines = [
{
hostName = "lambda";
maxJobs = 4;
systems = [ "aarch64-linux" ];
supportedFeatures = [ "big-parallel" ];
}
];
};
programs.ssh.extraConfig = ''
Host lambda
IdentityFile /home/julien/.ssh/id_ed25519
HostName lambda.julienmalka.me
User root
Port 45
'';
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 80 443 1810 ];
networking.firewall.allowedUDPPorts = [ 80 443 1810 ];