Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 683 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 683 Bytes

flake-registry

This is a CLI tool that lists all of the entries in the most recent global flake registry.

# Without installation
nix run github:the-nix-way/flake-registry

# With installation
nix profile install github:the-nix-way/flake-registry
flake-registry

The flake registry enables you to add flake inputs to a Nix flake's outputs without explicitly adding them to the inputs attribute. Here's an example:

{
  # No inputs!

  outputs = { self, nixpkgs }: {
    # Do something with nixpkgs
  };
}