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:
6
overlay/overlay.nix
Normal file
6
overlay/overlay.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
self: super: {
|
||||
myPkgs = {
|
||||
tinyfetch = super.callPackage ./tinyfetch/package.nix {};
|
||||
check_updates = super.callPackage ./check_updates/package.nix {};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user