initial commit

This commit is contained in:
Jakob Lechner 2025-07-17 00:45:59 +02:00
commit 1efde7694d
22 changed files with 1038 additions and 0 deletions

9
justfile Normal file
View file

@ -0,0 +1,9 @@
repl:
nix repl --expr "\
let \
flake = builtins.getFlake \"$(git rev-parse --show-toplevel)\"; in \
flake // (with flake; { \
lib = inputs.nixpkgs.lib; \
pkgs = inputs.nixpkgs.legacyPackages."\${builtins.currentSystem}".extend(import ./pkgs inputs); \
}) \
"