This commit is contained in:
2025-08-29 15:25:40 +02:00
parent 26440bfeee
commit f3821f0dfa
201 changed files with 2461 additions and 1546 deletions

15
pkgs/default.nix Normal file
View File

@@ -0,0 +1,15 @@
# yanked from @fufexan
{
systems = [
"x86_64-linux"
];
perSystem =
{ pkgs, ... }:
{
packages = {
# instant repl with automatic flake loading
repl = pkgs.callPackage ./repl { };
};
};
}