Unverified Commit c82e57f7 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

nixos: enable fstrim by default (#345285)

parents 4a12d219 7d8f1572
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -8,7 +8,9 @@ in {
  options = {

    services.fstrim = {
      enable = lib.mkEnableOption "periodic SSD TRIM of mounted partitions in background";
      enable = (lib.mkEnableOption "periodic SSD TRIM of mounted partitions in background" // {
        default = true;
      });

      interval = lib.mkOption {
        type = lib.types.str;