nix function exploring. [maintainer=@hsjobeki] https://noogle.dev
Find a file
github-actions[bot] ca55794fdc flake.lock: Update
Flake lock file updates:

• Updated input 'nix-master':
    'github:NixOS/nix/324bfd82dca67c3189b0d218160da30a5e9b7637' (2025-10-23)
  → 'github:NixOS/nix/b6dd17d6f2dbed0a5966f40685fd455c4feb6a57' (2025-12-20)
• Updated input 'nix-master/nixpkgs':
    'github:NixOS/nixpkgs/d98ce345cdab58477ca61855540999c86577d19d' (2025-08-26)
  → 'https://releases.nixos.org/nixos/25.05/nixos-25.05.813095.1c8ba8d3f763/nixexprs.tar.xz?narHash=sha256-zZk7fn2ARAqmLwaYTpxBJmj81KIdz11NiWt7ydHHD/M%3D' (2025-11-24)
2025-12-21 18:34:27 +01:00
.github Chore: update 'update-flake-lock' to V25 2025-05-18 20:10:31 +00:00
nixPlugin Noogle-plugin: init new nix plugin to remove dependency on custom nix version 2025-02-14 15:18:32 +07:00
pasta chore: run 'codespell' 2025-12-21 18:04:45 +01:00
pesto chore: run 'codespell' 2025-12-21 18:04:45 +01:00
salt builtins.types: add type signature for addErrorContext 2025-05-18 21:58:16 +02:00
tests update: main 2023-09-21 08:40:02 +02:00
website chore: run 'codespell' 2025-12-21 18:04:45 +01:00
.envrc INIT: first prototype of frontend 2022-11-26 10:36:08 +01:00
.gitattributes add vendor about test_assets 2024-01-07 17:20:35 +01:00
.gitignore website: Use buildNpmPackage/importNpmLock 2025-02-14 09:21:20 +00:00
.mergify.yml ci(mergify): upgrade configuration to current format 2024-11-22 22:36:00 +01:00
devShell.nix add alias tracking and bulk tests 2023-11-28 17:28:51 +01:00
flake.lock flake.lock: Update 2025-12-21 18:34:27 +01:00
flake.nix nixpkgs: use nixpkgs as source directly 2025-08-16 12:18:28 +00:00
LICENSE Create LICENSE 2023-01-25 16:23:32 +01:00
preCommit.nix bugfix: add nixpkgs-fmt to preCommit 2025-12-21 18:04:45 +01:00
projects.toml Feature/monorepo (#24) 2023-02-25 13:14:40 +01:00
README.md nixpkgs: use nixpkgs as source directly 2025-08-16 12:18:28 +00:00
treefmt.toml hook legacy data in ui build 2023-11-29 21:37:07 +01:00

Noogle

Website GitHub top language GitHub Workflow Status

Noogle is a simple Nix API search engine. It lets you search Nix functions

Current Features

  • Beginners-friendly search for Nix and Nix-related functions.
    • Render documentation comments optimized for readability.
    • Search optimized for English language and Nix function-names.
  • Filter by type signatures.
    • Function types are parsed and interpreted.
  • Noogle also knows stuff that is not (yet) officially documented.
    • Types of builtins (including builtins.derivation).
    • Can be extended via markdown contributions to Noogle.
    • Always shows the latest docs based on the main branch of Nixpkgs.
  • Outputs pre-rendered static HTML that is indexable by other search engines.
  • Wasm based performant search.

Nice features

  • Detect aliases of (most) lib and builtins functions
  • Override builtins documentation by documenting their alias in nixpkgs.lib. So you don't need to change and rebuild cpp nix anymore.
  • nix and nixpkgs are updated daily. All documentation changes will be picked up just the next day.

All Indexing is done via the pasta module. PRs welcome!

Additional data - such as types of builtins - are available in salt

Contribute

Contributions are very welcome just file a PR or issue. Indexed data can be added very easily in ./pasta/src/eval.nix.

Note: Indexed data must evaluate!

Build this page

nix build .#ui

This page generates static HTML pages. One page per API function.

It automatically includes meta tags for other search engines like Google or Bing.

Searching within the page is done via pagefind which is only available in the production build.

Develop

nix develop

This command creates the node_modules directory with all needed dependencies based on dream2nix.