Skip to content

Commit

Permalink
darwin/ci: fix disk usage
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Feb 23, 2024
1 parent 30b53c8 commit 6c0b333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion systems/darwin/ci.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# Larger linux-builder cores, ram, and disk.
cores = 6;
memorySize = lib.mkForce (1024 * 16);
diskSize = lib.mkForce (1024 * 1); # In MB.
diskSize = lib.mkForce (1024 * 1024 * 1); # In MB.
};
};
};
Expand Down

0 comments on commit 6c0b333

Please sign in to comment.