Compare commits

..

2 Commits

Author SHA1 Message Date
7d88b91968 Beef up linux builder
I need a bigger linux builder to build another linux...
2025-09-14 17:00:41 +02:00
f11998dd41 Got a very scary warning causing this change 2025-09-14 16:15:26 +02:00
2 changed files with 16 additions and 3 deletions

View File

@ -9,8 +9,6 @@
package = pkgs.nix; package = pkgs.nix;
settings = { settings = {
auto-optimise-store = true;
experimental-features = [ experimental-features = [
"nix-command" "nix-command"
"flakes" "flakes"
@ -35,6 +33,8 @@
"larstvei.cachix.org-1:mJq98qeTBnm2xNNibn2BEwN1ggi6uQg+5hWASdG1Vys=" "larstvei.cachix.org-1:mJq98qeTBnm2xNNibn2BEwN1ggi6uQg+5hWASdG1Vys="
]; ];
}; };
optimise.automatic = true;
}; };
environment.systemPackages = [ environment.systemPackages = [

View File

@ -4,7 +4,20 @@
../homebrew ../homebrew
]; ];
nix.linux-builder.enable = true; nix.linux-builder = {
enable = true;
ephemeral = true;
maxJobs = 4;
config = {
virtualisation = {
darwin-builder = {
diskSize = 200 * 1024;
memorySize = 8 * 1024;
};
cores = 6;
};
};
};
system = { system = {
stateVersion = 4; stateVersion = 4;