aboutsummaryrefslogtreecommitdiff
path: root/modules/profiles/fstrim/default.nix
blob: ed9eb2321e281ed6a658a2d023542dd75a7ded87 (plain)
1
2
3
4
5
6
7
8
9
10
# modules/profiles/fstrim/default.nix
#
# Routinely discard unused blocks in the filesystem on supported SSDs.

{
  services.fstrim = {
    enable = true;
    interval = "weekly";
  };
}