aboutsummaryrefslogtreecommitdiff
path: root/src/nix/search.md
diff options
context:
space:
mode:
authorAlexander Schmolck <a.schmolck+git@gmail.com>2023-04-30 14:55:08 +0100
committerAlexander Schmolck <a.schmolck+git@gmail.com>2023-05-17 08:10:30 +0100
commitafd9bd787dddc4e0d3e370f1b043e442ce1a9dbc (patch)
treef81c2a0a684e8fa14b4263c821df9e176dd5f1ba /src/nix/search.md
parent8d4b6766e297314f69ee96b6c9d74c6c2637f84b (diff)
Also use long options in src/nix/*.md
Diffstat (limited to 'src/nix/search.md')
-rw-r--r--src/nix/search.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/search.md b/src/nix/search.md
index 4caa90654..0c5d22549 100644
--- a/src/nix/search.md
+++ b/src/nix/search.md
@@ -52,12 +52,12 @@ R""(
* Search for packages containing `neovim` but hide ones containing either `gui` or `python`:
```console
- # nix search nixpkgs neovim -e 'python|gui'
+ # nix search nixpkgs neovim --exclude 'python|gui'
```
or
```console
- # nix search nixpkgs neovim -e 'python' -e 'gui'
+ # nix search nixpkgs neovim --exclude 'python' --exclude 'gui'
```
# Description