Add custom package support

This commit is contained in:
2022-11-25 15:31:07 +00:00
parent 92ef1db3de
commit 58be44ed2c
4 changed files with 41 additions and 0 deletions

8
pkgs/default.nix Normal file
View File

@@ -0,0 +1,8 @@
{ lib, pkgs }:
let
inherit (pkgs) callPackage;
in
{
# yeah turns out this is in nixpkgs now... we'll leave it as a sample i guess lol
monocraft' = callPackage ./monocraft.nix { };
}