Enable fstrim

This commit is contained in:
Isshi0417 2024-07-07 21:34:38 +09:00
parent 99a8a57fb2
commit 7146080ba3
2 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,7 @@
imports = [ imports = [
./hardware/cpu/tiger-lake.nix ./hardware/cpu/tiger-lake.nix
./hardware/gpu/nvidia.nix ./hardware/gpu/nvidia.nix
./hardware/ssd/ssd.nix
./gaming.nix ./gaming.nix
./nh.nix ./nh.nix
]; ];

View File

@ -0,0 +1,5 @@
{ lib, ... }:
{
services.fstrim.enable = lib.mkDefault true;
}