nixConfig/nixos/roles/nix.nix

20 lines
374 B
Nix

{
nix = {
settings = {
trusted-public-keys = [];
experimental-features = [
"flakes"
"nix-command"
];
auto-optimise-store = true;
fallback = true;
builders-use-substitutes = true;
};
gc = {
persistent = false;
dates = "weekly";
options = "-d";
randomizedDelaySec = "5h";
};
};
}