dotfiles/modules/nixos/hardware/disk.nix

8 lines
251 B
Nix
Raw Normal View History

2023-03-06 04:07:03 +00:00
{ config, pkgs, lib, ... }: {
# Enable fstrim, which tracks free space on SSDs for garbage collection
# More info: https://www.reddit.com/r/NixOS/comments/rbzhb1/if_you_have_a_ssd_dont_forget_to_enable_fstrim/
services.fstrim.enable = true;
}