organist
organist copied to clipboard
Control all your tooling from a single console
I'm trying to port my shell.nix to Nickel and I can't figure out how to use `checks` from my flake. ```nix { shellHook = '' ${self.checks.${system}.pre-commit-check.shellHook} ''; } ``` https://github.com/bbigras/nix-config/blob/e9531626e39a88a17c5aa888498418083b953243/nix/dev-shell.nix#L26-L28...
I'm trying to understand how much of Nix can currently be replaced Nickel and any blockers that would prevent me from integrating at least _some_ of Nickel into my actual...
A number of things in the final environment are lists, and lists don't compose well (they don't compose at all currently in Nickel, and that's arguably the less bad solution)....
``` $ nix run .#regenerate-files error: builder for '/nix/store/0gh34k924ii1n986w0m5sacq9430i7yv-regenerate-files.drv' failed with exit code 1; last 1 log lines: > bash: line 1: /tmp/nix-build-regenerate-files.drv-0/.attrs.sh: No such file or directory For full...
We can't really check the quality of the documentation (fortunately for me), but at least ensure that there's _some_ documentation for the most common things
Print the hook name when it runs. Makes it easier to understand what's going on. Depends on #203 (but mostly to avoid some merge conflicts, there's no inherent dependency link...
Separate the bit about calling Nickel (`importNickel`), and the one really about Organist (`importOrganist`). Doesn't change anything semantically, but 1. Makes the flow (hopefully) clearer 2. Allow exporting a lower-level...
The nickel lockfile (`nickel.lock.ncl`) only points to `organist` by default. It is possible to extend it with something like that in the `flake.nix` file: ```nix outputs = {organist, myNickelLib, ...}...
VSCode now allows for workspace local extensions. This would be really cool to support in organist, so you can specify e.g. that you would want a certain expression for working...
Hey, I'm looking to use `npins`, I'm not sure if I should PR an update to the documentation to mention that it is possible to use it in the non-flakes...