10 lines
221 B
Nix
10 lines
221 B
Nix
{ pkgs, config, lib, ... }: {
|
|
nix = {
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 20d";
|
|
};
|
|
settings.experimental-features = [ "nix-command" "flakes" ];
|
|
};
|
|
}
|