aboutsummaryrefslogtreecommitdiff
path: root/src/nix/profile-remove.md
blob: ba85441d801a306260f88ca3813bb829a2ed6b1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
R""(

# Examples

* Remove a package by position:

  ```console
  # nix profile remove 3
  ```

* Remove a package by attribute path:

  ```console
  # nix profile remove packages.x86_64-linux.hello
  ```

* Remove all packages:

  ```console
  # nix profile remove '.*'
  ```

* 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.

)""