new_nix/hosts/common/global/nix.nix
2025-03-15 15:32:00 +01:00

21 lines
296 B
Nix

{
inputs,
lib,
...
}: {
# flakes
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
];
warn-dirty = false;
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than +7";
};
};
}