Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

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

chore: Reorder nix settings alphabetically

+6 -6
+6 -6
vars/nix.nix
··· 5 5 }; 6 6 settings = { 7 7 accept-flake-config = true; 8 - builders-use-substitutes = true; 9 8 auto-optimise-store = true; 9 + builders-use-substitutes = true; 10 10 extra-experimental-features = "flakes nix-command pipe-operator"; 11 + http-connections = 100; 12 + keep-derivations = true; 13 + keep-outputs = true; 14 + max-jobs = "auto"; 15 + max-substitution-jobs = 100; 11 16 substituters = [ 12 17 "https://cache.nixos.org?priority=1" 13 18 "https://nix-community.cachix.org?priority=2" ··· 20 25 "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 21 26 "nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4=" 22 27 ]; 23 - http-connections = 100; 24 - keep-derivations = true; 25 - keep-outputs = true; 26 - max-jobs = "auto"; 27 - max-substitution-jobs = 100; 28 28 trusted-users = ["root" "@wheel"]; 29 29 }; 30 30 }