fix: reflect renames of Nix configuration options

Change-Id: I7e28ac3d71acd7d99a1d3ef97bef9422097e4abf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6154
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
sterni 2022-08-25 14:54:32 +02:00
parent 0c4c307926
commit aaa994137a
5 changed files with 23 additions and 27 deletions

View file

@ -74,16 +74,14 @@ lib.fix (self: {
};
};
nix = {
maxJobs = lib.mkDefault 4;
trustedUsers = [ "root" "tazjin" ];
binaryCaches = [
nix.settings = {
max-jobs = lib.mkDefault 4;
trusted-users = [ "root" "tazjin" ];
substituters = [
"https://tazjin.cachix.org"
];
binaryCachePublicKeys = [
trusted-public-keys = [
"tazjin.cachix.org-1:IZkgLeqfOr1kAZjypItHMg1NoBjm4zX9Zzep8oRSh7U="
];
};