mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
8 lines
251 B
Nix
8 lines
251 B
Nix
{ 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;
|
|
|
|
}
|