.github | ||
nix | ||
public | ||
src | ||
.editorconfig | ||
.envrc | ||
.gitignore | ||
.npmrc | ||
angular.json | ||
flake.lock | ||
flake.nix | ||
LICENSE | ||
package.json | ||
pnpm-lock.yaml | ||
README.md | ||
tsconfig.app.json | ||
tsconfig.json | ||
tsconfig.spec.json |
NüschtOS Search
Simple and fast static-page NixOS option search
Deployments
- General collection of community projects https://search.nüschtos.de
- All flakes used at C3D2 https://search.nixos.c3d2.de
- NixVim https://nix-community.github.io/nixvim/search
- Nixidy https://arnarg.github.io/nixidy/options/search
Usage
There are two functions exposeed to build the directory containing the static search:
mkMultiSearch
to build a search with multiple scopes (modules). It takes thebaseHref
,title
andscopes
option.mkSearch
is a thin wrapper aroundmkMultiSearch
to only use one scope (module). It takes themodules
,optionsJSON
,optionsPrefix
,urlPrefix
,baseHref
andtitle
option.
Explanation of options
-
baseHref
- The directory to where the search is going to be deployed relative to the domain. Defaults to/
. -
title
- The title on the top left. Defaults toNüschtOS Search
. -
modules
- A list of NixOS modules as an attrset or file similar to thenixosSystem
function. Exclusive withoptionsJSON
. -
optionsJSON
- Path to a pre-generatedoptions.json
file. Exclusive withmodules
. -
optionsPrefix
- A static prefix to append to all options. An extradot
is always appended. Defaults to being empty. -
urlPrefix
- The prefix which is prepended to the declaration link. This is usually a link to a git. -
scopes
is a list of attributes which each takesname
,modules
,optionsJSON
,optionsPrefix
orurlPrefix
option.
Examples
mkMultiSearch {
baseHref = "/search/";
title = "Custom Search";
scopes = [ {
name = "NixOS Modules";
modules = [ self.inputs.nixos-modules.nixosModule ];
urlPrefix = "https://github.com/NuschtOS/nixos-modules/blob/main/";
} {
name = "Example Module";
optionsJSON = ./path/to/options.json;
optionsPrefix = "programs.example";
urlPrefix = "https://git.example.com/blob/main/";
} ];
};
mkSearch { modules = [ self.inputs.nixos-modules.nixosModule ]; urlPrefix = "https://github.com/NuschtOS/nixos-modules/blob/main/"; }
mkSearch { optionsJSON = ./path/to/options.json; optionsPrefix = "programs.example"; urlPrefix = "https://git.example.com/blob/main/"; }
mkSearch { optionsJSON = ./path/to/options.json; urlPrefix = "https://git.example.com/blob/main/"; baseHref = "/search/"; title = "Custom Search"; }
- Static page with GitHub Actions and Cloudflare/GitHub Pages https://github.com/NuschtOS/search.nuschtos.de/blob/main/.github/workflows/gh-pages.yaml https://github.com/NuschtOS/search.nuschtos.de/blob/main/flake.nix
- Deployed with NixOS https://gitea.c3d2.de/c3d2/nix-config/src/branch/master/hosts/nixos-misc/default.nix#L48-L103
Motivation
We wanted something similar to https://search.nixos.org to easily search through all the flakes options across many projects we accumulated in projects but without the need to deploy an Elasticsearch. Ideally it should be just a static site with json blob that can be deployed on GitHub pages.
FAQ
Missing declaration
This is most often caused by using nix' import
keyword to load a module in the flake instead of referencing it via the path type.
This causes the module system to no longer be aware of the origin of the module and the missing declaration.
If no arguments are being hand over, this can be easily fixed by removing the import
keyword. (e.g. change in sops-nix)
If arguments are being hand over, the module needs to be slightly refactored.
It is often the easiest to move everything depending on the arguments into the flake.nix
and loading the module via the module systems imports
variable. (e.g. change in ifstate.nix)
default/example is a string/has extra surrounding quotes
This is caused by a missing lib.literalExpression
in default/example. Please open a pull request against the source of that option to fix this.
Debugging options.json
Generating a options.json
in a nix repl
can be done with the following snippet:
:b (pkgs.nixosOptionsDoc { inherit ((lib.evalModules { modules = [ { config._module.check = false; } outputs.nixosModules.default ]; })) options; warningsAreErrors = false; }).optionsJSON
It is assumed that the flake was loaded before with :lf
and the module(s) is/are under nixosModules.default
. For some flakes this may need to be adapted.
Contact
For bugs and issues please open an issue in this repository.
If you want to chat about things or have ideas, feel free to join the Matrix chat.