nix-managed-macbook/nix.nix

13 lines
238 B
Nix
Raw Normal View History

2022-09-27 13:08:52 +05:30
{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
nix.package = pkgs.nixUnstable;
nix.settings = {
experimental-features = "nix-command flakes";
max-jobs = 6;
cores = 2;
auto-optimise-store = true;
};
}