eve-psr-nix0/system/nix-conf.nix

18 lines
429 B
Nix
Raw Normal View History

2023-06-26 16:30:36 -05:00
{ ... }: {
2023-06-26 16:19:14 -05:00
nix = {
buildMachines = [
{
hostName = "localhost";
system = "x86_64-linux";
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
maxJobs = 8;
}
];
2023-06-26 16:19:14 -05:00
distributedBuilds = false;
settings = {
auto-optimise-store = false; # https://github.com/NixOS/nix/issues/7273
experimental-features = [ "nix-command" "flakes" ];
};
};
}