17 lines
275 B
Nix
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";
|
|
};
|
|
};
|
|
}
|