Nix build settings on mac

This commit is contained in:
Nathan McCarty 2023-03-27 20:08:06 -04:00
parent dbaf21d658
commit 526cb2c209
No known key found for this signature in database
1 changed files with 5 additions and 0 deletions

View File

@ -5,4 +5,9 @@
nathan = { config = { isDesktop = true; }; }; nathan = { config = { isDesktop = true; }; };
# Setup home manager # Setup home manager
home-manager.users.nathan = import ./home.nix; home-manager.users.nathan = import ./home.nix;
# Configure nix build
nix.settings = {
cores = 8;
max-jobs = 2;
};
} }