logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Nix Store - Manage Package Store Paths | Online Free DevTools by Hexmos

Manage package store paths with Nix Store. Delete unused paths, optimize store, and compare versions. Free online tool, no registration required.

nix-store-3

Manipulate the Nix store. See also: nix-store. More information: https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-store.html.

  • Collect garbage, i.e. remove unused paths to reduce space usage:

nix store gc

  • Hard-link identical files together to reduce space usage:

nix store optimise

  • Delete a specific store path (most be unused):

nix store delete /nix/store/{{checksum-package-version.ext}}

  • List a contents of the store path, on a remote store:

nix store --store {{https://cache.nixos.org}} ls /nix/store/{{checksum-package-version.ext}}

  • Show the differences in versions between two store paths, with their respective dependencies:

nix store diff-closures /nix/store/{{checksum-package-version.ext}} /nix/store/{{checksum-package-version.ext}}

See Also