1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

Use nix.buildMachines.*.systems instead of nix.buildMachines.*.system

This commit is contained in:
Ethan Turkeltaub 2023-11-22 18:13:01 -05:00
parent a5812ff83c
commit 6a3a683d43
No known key found for this signature in database
GPG key ID: 707E91B28D56B61F

View file

@ -136,9 +136,9 @@ in
hostName = "linux-builder";
sshUser = "builder";
sshKey = "/etc/nix/builder_ed25519";
system = "${stdenv.hostPlatform.uname.processor}-linux";
systems = [ "${stdenv.hostPlatform.uname.processor}-linux" ] ++ cfg.systems;
publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUpCV2N4Yi9CbGFxdDFhdU90RStGOFFVV3JVb3RpQzVxQkorVXVFV2RWQ2Igcm9vdEBuaXhvcwo=";
inherit (cfg) maxJobs supportedFeatures systems;
inherit (cfg) maxJobs supportedFeatures;
}];
nix.settings.builders-use-substitutes = true;