blob: ff8dd28ff6c47d82fee5ac807d89a6f8bf5f856c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
use-xdg-base-directories = true;
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}
|