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

11 lines
244 B
Nix
Raw Normal View History

2023-06-26 16:30:36 -05:00
{ ... }: {
2023-06-26 16:19:14 -05:00
nix = {
buildMachines = [ ];
distributedBuilds = false;
settings = {
auto-optimise-store = false; # https://github.com/NixOS/nix/issues/7273
experimental-features = [ "nix-command" "flakes" ];
};
};
}