2024-05-24 14:03:52 -05:00
|
|
|
{ ... }:
|
2024-05-03 14:35:00 -05:00
|
|
|
{
|
|
|
|
nix = {
|
|
|
|
settings = {
|
|
|
|
experimental-features = [
|
2024-11-06 16:01:31 -06:00
|
|
|
"pipe-operators"
|
2024-05-03 14:35:00 -05:00
|
|
|
"nix-command"
|
|
|
|
"flakes"
|
|
|
|
];
|
|
|
|
auto-optimise-store = true;
|
|
|
|
trusted-users = [ "@wheel" ];
|
|
|
|
};
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
2024-05-24 14:03:52 -05:00
|
|
|
options = "--delete-older-than 7d";
|
2024-05-03 14:35:00 -05:00
|
|
|
dates = "daily";
|
|
|
|
};
|
|
|
|
};
|
2024-11-06 16:01:31 -06:00
|
|
|
}
|