1
0
Fork 0
nixos-config/homes/fb4/nix-gc.nix
2018-04-02 17:52:16 +02:00

21 lines
386 B
Nix

{ pkgs, ... }:
{
systemd.user = {
services.nix-gc = {
Unit = {
Description = "Collect garbage";
};
Service = {
Type = "oneshot";
ExecStart="${pkgs.nix}/bin/nix-collect-garbage --delete-older-than 5d";
};
};
timers.nix-gc = {
Timer = {
OnCalendar = "22:00";
Persistent = "true";
};
};
};
}