Files
cnix/pkgs/default.nix
2025-08-29 15:25:40 +02:00

16 lines
236 B
Nix

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