added a custom overlay for nixpkgs, moves all of the packages that I maintain into an attribute set 'pkgs.myPkgs' so that my update checker can easily locate them

This commit is contained in:
2024-11-10 17:43:52 -05:00
parent 06b840a743
commit f9b8251567
5 changed files with 137 additions and 78 deletions

6
overlay/overlay.nix Normal file
View File

@@ -0,0 +1,6 @@
self: super: {
myPkgs = {
tinyfetch = super.callPackage ./tinyfetch/package.nix {};
check_updates = super.callPackage ./check_updates/package.nix {};
};
}