From 731053d8aa1624475779065ef17294c54af072e4 Mon Sep 17 00:00:00 2001 From: DavHau Date: Thu, 16 Feb 2023 19:25:18 +0700 Subject: [PATCH] services.cachix-watch-store: fix description of compressionLevel By now, zstd is the default. --- nixos/modules/services/system/cachix-watch-store.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/system/cachix-watch-store.nix b/nixos/modules/services/system/cachix-watch-store.nix index ec73c0bcdcfe..85e9509bcc82 100644 --- a/nixos/modules/services/system/cachix-watch-store.nix +++ b/nixos/modules/services/system/cachix-watch-store.nix @@ -25,7 +25,7 @@ in compressionLevel = mkOption { type = types.nullOr types.int; - description = lib.mdDoc "The compression level for XZ compression (between 0 and 9)"; + description = lib.mdDoc "The compression level for ZSTD compression (between 0 and 16)"; default = null; };