diff --git a/nixos/modules/services/backup/znapzend.nix b/nixos/modules/services/backup/znapzend.nix
index 203631a577f0..98cd647f61ac 100644
--- a/nixos/modules/services/backup/znapzend.nix
+++ b/nixos/modules/services/backup/znapzend.nix
@@ -372,6 +372,41 @@ in
and zfs8
for more info.
'';
+ features.sendRaw = mkEnableOption ''
+ sendRaw feature which adds the options -w to the
+ zfs send command. For encrypted source datasets this
+ instructs zfs not to decrypt before sending which results in a remote
+ backup that can't be read without the encryption key/passphrase, useful
+ when the remote isn't fully trusted or not physically secure. This
+ option must be used consistently, raw incrementals cannot be based on
+ non-raw snapshots and vice versa.
+ '';
+ features.skipIntermediates = mkEnableOption ''
+ Enable the skipIntermediates feature to send a single increment
+ between latest common snapshot and the newly made one. It may skip
+ several source snaps if the destination was offline for some time, and
+ it should skip snapshots not managed by znapzend. Normally for online
+ destinations, the new snapshot is sent as soon as it is created on the
+ source, so there are no automatic increments to skip.
+ '';
+ features.lowmemRecurse = mkEnableOption ''
+ use lowmemRecurse on systems where you have too many datasets, so a
+ recursive listing of attributes to find backup plans exhausts the
+ memory available to znapzend: instead, go the slower
+ way to first list all impacted dataset names, and then query their
+ configs one by one.
+ '';
+ features.zfsGetType = mkEnableOption ''
+ use zfsGetType if your zfs get supports a
+ -t argument for filtering by dataset type at all AND
+ lists properties for snapshots by default when recursing, so that there
+ is too much data to process while searching for backup plans.
+ If these two conditions apply to your system, the time needed for a
+ --recursive search for backup plans can literally
+ differ by hundreds of times (depending on the amount of snapshots in
+ that dataset tree... and a decent backup plan will ensure you have a lot
+ of those), so you would benefit from requesting this feature.
+ '';
};
};