mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
8 lines
269 B
Nix
8 lines
269 B
Nix
{ config, 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 = lib.mkIf config.physical true;
|
|
}
|