initial commit

This commit is contained in:
2026-02-06 13:52:54 +01:00
commit e74b485510
10 changed files with 851 additions and 0 deletions

8
pkgs/default.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs }:
let
self = {
example-a = pkgs.callPackage ./example-a { };
example-b = pkgs.callPackage ./example-b { };
};
in
self // { default = self.example-a; }