this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cleanup Nix configuration

+6 -3
+6 -3
nix/nix.nix
··· 1 1 {pkgs, ...}: { 2 2 nixpkgs.config.allowUnfree = true; 3 3 4 + nix.useDaemon = true; 5 + services.nix-daemon.enable = true; 6 + 4 7 # You should generally set this to the total number of logical cores in your system. 5 8 # $ sysctl -n hw.ncpu 6 - nix.maxJobs = 8; 7 - nix.buildCores = 8; 9 + nix.settings.max-jobs = 8; 10 + nix.settings.cores = 8; 8 11 9 12 nix.package = pkgs.nixFlakes; 10 13 nix.extraOptions = '' ··· 17 20 ''; 18 21 19 22 # nix.useSandbox = true; 20 - nix.sandboxPaths = [ 23 + nix.settings.extra-sandbox-paths = [ 21 24 "/System/Library/Frameworks" 22 25 "/System/Library/PrivateFrameworks" 23 26 "/usr/lib"