os/modules/core/nix.nix

31 lines
752 B
Nix
Raw Normal View History

{ config
, pkgs
, lib
, inputs
, ...
2022-11-22 11:30:54 +00:00
}: {
nix = {
# Use default version alias for nix package
package = pkgs.nix;
gc.automatic = true;
optimise.automatic = true;
2022-11-22 11:30:54 +00:00
settings = {
# Improve nix store disk usage
auto-optimise-store = true;
# Prevents impurities in builds
sandbox = true;
# give root and @wheel special privileges with nix
trusted-users = [ "root" "@wheel" ];
2022-11-22 11:30:54 +00:00
# This is just a representation of the nix default
system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
2022-11-22 11:30:54 +00:00
};
# Generally useful nix option defaults
extraOptions = ''
min-free = 536870912
keep-outputs = true
keep-derivations = true
fallback = true
'';
};
}