ark/modules/base/nix.nix

27 lines
668 B
Nix
Raw Normal View History

2022-04-09 21:33:13 +03:00
{
pkgs,
lib,
inputs,
...
}: {
nix = {
registry = builtins.mapAttrs (_: v: {flake = v;}) (lib.filterAttrs (_: v: v ? outputs) inputs);
package = pkgs.nixUnstable;
gc.automatic = true;
optimise.automatic = true;
extraOptions = ''
min-free = 536870912
keep-outputs = true
keep-derivations = true
fallback = true
2022-04-10 08:18:19 +03:00
extra-experimental-features = nix-command flakes
2022-05-03 21:12:47 +03:00
builders-use-substitutes = true
2022-04-09 21:33:13 +03:00
'';
useSandbox = true;
allowedUsers = ["@wheel"];
trustedUsers = ["root" "@wheel"];
autoOptimiseStore = true;
2022-04-17 19:20:06 +03:00
nixPath = ["nixpkgs=${inputs.nixpkgs}" "home-manager=${inputs.home}"];
2022-04-09 21:33:13 +03:00
};
}