21 lines
296 B
Nix
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";
|
|
};
|
|
};
|
|
}
|