flake: initial commit

This commit is contained in:
Alejandro Soto 2025-01-26 15:07:06 -06:00
parent 6f35544dcd
commit 4b8609385a
6 changed files with 207 additions and 0 deletions

8
pkgs/default.nix Normal file
View file

@ -0,0 +1,8 @@
final: prev:
with prev.lib; let
inherit (final) callPackage;
in {
lib = callPackage ./lib {};
override = {};
}