mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-27 06:10:53 +01:00
added big-parallel feature
This commit is contained in:
parent
09030fadca
commit
0ea363da23
1 changed files with 22 additions and 0 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Add table
Reference in a new issue