Nix¶
- ID
nix- Home page
- Version requirement
>= 2
- Platforms
🐧 Linux · 🍎 macOS
- Operations
installed·outdated·search·install·upgrade·upgrade_all·remove·sync·cleanup- purl types
pkg:nix- CLI name
nix-env- Issues and PRs
- Source
Nix, the functional package manager.
Note
All operations use the imperative nix-env interface, which manages
a per-user package profile. Declarative approaches (NixOS modules,
home-manager) are not covered.
Channel refresh (sync) and store garbage collection (cleanup) shell
out to the sibling nix-channel and nix-collect-garbage binaries
installed alongside nix-env, not to nix-env itself.
What mpm adds to nix¶
Through mpm, nix gains --exact and --extended search, to narrow to exact names or match descriptions.
Bigger still, mpm reaches across every manager at once: mpm installed and mpm outdated cover nix alongside every other manager you run in one table, mpm upgrade --all updates them together, and mpm sbom exports the whole machine as one bill of materials.
Every mpm command also gains --dry-run and --plan previews, cross-scheme version comparison and purl identifiers. See manager augmentations for how each one is built.
Your nix commands, in mpm¶
You already know nix: each operation maps one-to-one onto mpm, in an interface shared by every manager.
To… |
With |
With |
|---|---|---|
List what’s installed |
|
|
List outdated packages |
|
|
Search for a package |
|
|
Install a package |
|
|
Upgrade one package |
|
|
Upgrade everything |
|
|
Remove a package |
|
|
Clear caches |
|
|
Prefix any command above with --dry-run to simulate the underlying manager calls without touching the system: the safe way to watch what mpm would do before trusting it.
Operations¶
Operation |
Supported |
Notes |
|---|---|---|
|
✓ |
|
|
✓ |
|
|
||
|
✓ |
exact and extended search backfilled by |
|
✓ |
|
|
✓ |
|
|
✓ |
|
|
✓ |
|
|
✓ |
|
|
✓ |
|
|
Selecting and configuring nix¶
Deselect nix for a single run with --no-nix, or persist the choice in your configuration:
[mpm]
nix = false
Keep it enabled but tune how mpm drives it with a per-manager override:
[mpm.managers.nix]
timeout = 900
mpm config-template nix prints every overridable attribute as a ready-to-paste block.
Recipes¶
A few jobs you would otherwise script around nix, one mpm command each:
Snapshot and clone a machine:
mpm --nix dump nix.toml, thenmpm restore nix.tomlon the next one.Export a compliance SBOM:
mpm --nix sbom(CycloneDX by default,--spdxfor SPDX).
Privilege escalation¶
mpm runs this manager as the current user and never prepends sudo by default. Flip the policy for its privileged operations with --sudo or the per-manager sudo override.
See privilege escalation for the full policy.
Cooldown¶
State of Nix’s release-age gating, from the cooldown support table:
Status: ❌ None
A cooldown only pays off where a compromised release can be withdrawn while the clock runs, and can only be emulated where the registry dates its releases. From the retraction table:
Registry: Git-manifest indexes
Retraction: Index revert: reverting the manifest, Portfile or derivation commit withdraws the version
Publish date: ❌ only the commit date, which is client-set and trivially backdated
With --cooldown set, mpm skips this manager’s install and upgrade operations rather than run them unguarded (fail-closed); --allow-unsupported-managers opts back in.
Version probe¶
The version is probed by running:
$ nix-env --version
nix-env (Nix) 2.18.1
and extracted with:
r"nix-env \(Nix\) (?P<version>\S+)"
Reference traces¶
Raw native outputs captured in the manager source: the reference mpm’s parsers were written against. If you know Nix well and a transcript below looks wrong, or a newer release changed its output format, report it.
$ nix-env --query --installed
hello-2.12.1
nix-2.18.1
python3-3.11.6
$ nix-env --query --upgradeable --compare-versions
hello-2.12.1 < 2.13.0
python3-3.11.6 < 3.12.0
Feed any of these through mpm and the raw output becomes one uniform table, the same shape for every manager: filter it, project columns, or export it (mpm --nix installed --output json, or csv, toml, yaml), each package carrying a purl and a version comparable across managers.
Changelog¶
6.3.0(2026-04-09)Add Nix package manager with
installed,outdated,search,install,upgrade,remove,sync, andcleanupsupport.