new_nix/hosts/common/global/nix.nix
2025-03-15 16:19:21 +01:00

17 lines
275 B
Nix

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