nixos-config/fstrim.nix

16 lines
230 B
Nix
Raw Normal View History

2015-12-06 10:03:22 +01:00
{ config, pkgs, ... }:
{
systemd.services.fstrimroot = {
path = [ pkgs.eject ];
restartIfChanged = false;
serviceConfig = {
Type = "oneshot";
};
script = "fstrim -v /";
startAt = "04:00";
};
}