1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00

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 { options = mkOption {
type = types.listOf types.str; type = types.listOf types.str;
default = [ ]; default = [ ];
example = [ "--no-aliases" ]; example = [ "--no-cmd" ];
description = '' description = ''
List of options to pass to zoxide. List of options to pass to zoxide.
''; '';