mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
16 lines
319 B
Nix
16 lines
319 B
Nix
_: {
|
|
# TODO: add the same treatment as the other nix gc script
|
|
nix = {
|
|
gc = {
|
|
automatic = true;
|
|
frequency = "weekly";
|
|
persistent = true;
|
|
};
|
|
};
|
|
services.home-manager.autoExpire = {
|
|
enable = true;
|
|
frequency = "weekly";
|
|
store.cleanup = true;
|
|
timestamp = "-7 days";
|
|
};
|
|
}
|