aboutsummaryrefslogtreecommitdiff
path: root/src/nix/profile-remove.md
blob: a001525ae69a5d9eba99c92a87d0044e49550d94 (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
34
35
R""(

**Note**: unlike [`nix profile install`](./nix3-profile-install.md), this command does *not* take installables.

# Examples

* Remove a package by name:

  ```console
  # nix profile remove hello
  ```

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

)""