nixos: enable fstrim by default (#345285)

This commit is contained in:
Pol Dellaiera
2024-09-30 11:52:13 +02:00
committed by GitHub
+3 -1
View File
@@ -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;