My Nix Configuration
2
fork

Configure Feed

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

[def-config] remove nh

dish 2c4885b5 dd2f1614

+2 -12
+2 -4
nixosModules/default-config/nixConfig.nix
··· 15 15 { 16 16 nix = { 17 17 enable = true; 18 - # We use `nh.clean` instead, so this is disabled 19 - gc.automatic = false; 18 + gc.automatic = true; 20 19 registry = lib.mapAttrs (_: v: { flake = v; }) flakeInputs; 21 20 settings = { 22 21 # Don't auto-accept flake-defined nix settings, they're a CVE waiting to happen. ··· 58 57 keep-going = true; 59 58 # More direnv gc root stuff 60 59 keep-outputs = true; 61 - # Show fewer log lines from failed builds since I get them from nh 62 - log-lines = 10; 60 + log-lines = 20; 63 61 # Limit the max amount of builds 64 62 max-jobs = lib.mkDefault 4; 65 63 # Extra system features
-1
nixosModules/default-config/programs/default.nix
··· 1 1 { 2 2 imports = [ 3 3 ./ssh.nix 4 - ./nh.nix 5 4 ]; 6 5 programs.fish.enable = true; 7 6 }
-7
nixosModules/default-config/programs/nh.nix
··· 1 - _: { 2 - programs.nh = { 3 - enable = true; 4 - clean.enable = true; 5 - clean.extraArgs = "-k 5"; 6 - }; 7 - }