initial commit

This commit is contained in:
Callum Leslie 2025-09-10 11:29:31 +01:00
commit acf1a07132
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
6 changed files with 209 additions and 0 deletions

9
pkgs/default.nix Normal file
View file

@ -0,0 +1,9 @@
{
pkgs,
lib,
}:
# ./default.nix gets included as default, so remove it from the final package set
builtins.removeAttrs (lib.packagesFromDirectoryRecursive {
inherit (pkgs) callPackage;
directory = ./.;
}) ["default"]