zoxide: replace outdated flag in "options" example

The "--no-aliases" option hasn't been a valid init option since 0.8.1,
when it was renamed to "--no-cmd".
This commit is contained in:
Mike Thai 2024-09-17 17:58:03 -04:00 committed by Robert Helgesson
parent 87c7d4df16
commit 1f7b8188a9
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -26,7 +26,7 @@ in {
options = mkOption {
type = types.listOf types.str;
default = [ ];
example = [ "--no-aliases" ];
example = [ "--no-cmd" ];
description = ''
List of options to pass to zoxide.
'';