Update to nix-darwin unstable on mba
Alan Pearce alan@alanpearce.eu
Mon, 03 Oct 2022 00:01:54 +0200
4 files changed, 12 insertions(+), 13 deletions(-)
M system/mba.nix → system/mba.nix
@@ -27,7 +27,9 @@ system.stateVersion = 4; # You should generally set this to the total number of logical cores in your system. # $ sysctl -n hw.ncpu - nix.maxJobs = 8; - nix.buildCores = 4; + nix.settings = { + max-jobs = 8; + cores = 4; + }; } # vim: sw=2 sts=2 expandtab autoindent smarttab
M system/settings/darwin.nix → system/settings/darwin.nix
@@ -6,20 +6,17 @@ enable = true; enableSocketListener = true; }; nix = { - buildCores = lib.mkDefault 0; - daemonIONice = true; - daemonNiceLevel = 10; + settings.cores = lib.mkDefault 0; + daemonIOLowPriority = true; gc = { automatic = true; user = "alan"; options = "--max-freed $((25 * 1024**3 - 1024 * $(df -P -k /nix/store | tail -n 1 | awk '{ print $4 }')))"; }; - extraOptions = '' - system = x86_64-darwin - extra-platforms = x64_64-darwin aarch64-darwin - ''; + settings.extra-platforms = "x86_64-darwin aarch64-darwin"; }; + nixpkgs.system = "x86_64-darwin"; nixpkgs.config = { allowUnfree = true; };
M system/settings/programs/base.nix → system/settings/programs/base.nix
@@ -6,8 +6,8 @@ cachix vim zstd ]; - nix = { - binaryCaches = ["https://nix-community.cachix.org"]; - binaryCachePublicKeys = ["nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="]; + nix.settings = { + trusted-substituters = ["https://nix-community.cachix.org"]; + trusted-public-keys = ["nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="]; }; }
M user/settings/darwin.nix → user/settings/darwin.nix
@@ -3,7 +3,7 @@ { nixpkgs.overlays = [ (self: super: { - darwin-zsh-completions = super.runCommandNoCC "darwin-zsh-completions-0.0.0" + darwin-zsh-completions = super.runCommand "darwin-zsh-completions-0.0.0" { preferLocalBuild = true; } '' mkdir -p $out/share/zsh/site-functions