infra/config/nix.nix

11 lines
211 B
Nix

{
nix = {
gc.automatic = true;
settings =
(import ../flake.nix).nixConfig
// {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
};
};
}