Fix buildMachines example: use lists, not string (#20361)
Using the example before this commit resulted in the following error: ``` error: value is a string while a list was expected, at /nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgs/nixos/modules/services/misc/nix-daemon.nix:349:37 ```
This commit is contained in:
parent
45854a02e8
commit
9cbf8a0652
@ -172,8 +172,8 @@ in
|
||||
sshKey = "/root/.ssh/id_buildfarm";
|
||||
system = "x86_64-linux";
|
||||
maxJobs = 2;
|
||||
supportedFeatures = "kvm";
|
||||
mandatoryFeatures = "perf";
|
||||
supportedFeatures = [ "kvm" ];
|
||||
mandatoryFeatures = [ "perf" ];
|
||||
}
|
||||
];
|
||||
description = ''
|
||||
|
Loading…
Reference in New Issue
Block a user