mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-12 21:27:17 +02:00
34 lines
473 B
Markdown
34 lines
473 B
Markdown
R""(
|
|
|
|
# Examples
|
|
|
|
* Remove a package by name:
|
|
|
|
```console
|
|
# nix profile remove hello
|
|
```
|
|
|
|
* Remove all packages:
|
|
|
|
```console
|
|
# nix profile remove --all
|
|
```
|
|
|
|
* Remove packages by regular expression:
|
|
|
|
```console
|
|
# nix profile remove --regex '.*vim.*'
|
|
```
|
|
|
|
|
|
* Remove a package by store path:
|
|
|
|
```console
|
|
# nix profile remove /nix/store/rr3y0c6zyk7kjjl8y19s4lsrhn4aiq1z-hello-2.10
|
|
```
|
|
|
|
# Description
|
|
|
|
This command removes a package from a profile.
|
|
|
|
)""
|