summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems/zfs.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-02-26 17:15:58 +0000
committerAlyssa Ross <hi@alyssa.is>2021-04-01 19:19:00 +0000
commitb0854238b0ff8dd80573aa03cef8373dcb54cd0b (patch)
tree2afb37cd4b51b96e654d94cd556b6450f96baade /nixos/modules/tasks/filesystems/zfs.nix
parentf67748ecda572f0c2e627fec16ae4226614d29c6 (diff)
downloadnixpkgs-b0854238b0ff8dd80573aa03cef8373dcb54cd0b.tar
nixpkgs-b0854238b0ff8dd80573aa03cef8373dcb54cd0b.tar.gz
nixpkgs-b0854238b0ff8dd80573aa03cef8373dcb54cd0b.tar.bz2
nixpkgs-b0854238b0ff8dd80573aa03cef8373dcb54cd0b.tar.lz
nixpkgs-b0854238b0ff8dd80573aa03cef8373dcb54cd0b.tar.xz
nixpkgs-b0854238b0ff8dd80573aa03cef8373dcb54cd0b.tar.zst
nixpkgs-b0854238b0ff8dd80573aa03cef8373dcb54cd0b.zip
nixos/zfs: fix autoScrub.enable description
This was previously "Whether to enable Enables periodic scrubbing of
ZFS pools.."
Diffstat (limited to 'nixos/modules/tasks/filesystems/zfs.nix')
-rw-r--r--nixos/modules/tasks/filesystems/zfs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index 59676e99678..97fab6f11ea 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -302,7 +302,7 @@ in
     };
 
     services.zfs.autoScrub = {
-      enable = mkEnableOption "Enables periodic scrubbing of ZFS pools.";
+      enable = mkEnableOption "periodic scrubbing of ZFS pools";
 
       interval = mkOption {
         default = "Sun, 02:00";