Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrene/fzf-nix
Fuzzy search through nixpkgs.
https://github.com/mrene/fzf-nix
fzf nix nixpkgs
Last synced: about 1 month ago
JSON representation
Fuzzy search through nixpkgs.
- Host: GitHub
- URL: https://github.com/mrene/fzf-nix
- Owner: mrene
- Created: 2023-08-24T03:18:14.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-26T01:55:42.000Z (11 months ago)
- Last Synced: 2024-10-30T02:48:04.584Z (3 months ago)
- Topics: fzf, nix, nixpkgs
- Language: Nix
- Homepage:
- Size: 43 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
fzf-nix
## What does it do?
Fuzzy search through nixpkgs.## Usage
![asciicast](./docs/term.svg)fzf-nix can be added to your configuration and will generate the package list from the nixpkgs input.
Try it out with `nix run github:mrene/fzf-nix`
```nix
{
inputs.fzf-nix = {
url = "github:mrene/fzf-nix";
fzf-nix.inputs.nixpkgs.follows = "nixpkgs";
};
}
```