nixos-config/fstrim.nix

16 lines
256 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";
};
2018-11-05 18:05:56 +01:00
script = "${pkgs.utillinux.bin}/bin/fstrim -v /";
2015-12-06 10:03:22 +01:00
startAt = "04:00";
};
}