docs: improve documentation
Some checks failed
Flake check / Check flake (push) Has been cancelled

This commit is contained in:
Leon Schwarzäugl 2025-07-16 18:19:37 +02:00
parent 51896dabea
commit 641a0cd84d
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
11 changed files with 2424 additions and 423 deletions

View file

@ -0,0 +1,8 @@
{ name, writeShellApplication, ... }:
writeShellApplication {
inherit name;
text = ''
set -euo pipefail
nix-instantiate --strict --eval --expr "let lib = import <nixpkgs/lib>; in $*"
'';
}