How to overlay packages over nixpkgs? #677
|
How can I overlay my packages defined in a PS Thank you for this amazing project |
Replies: 2 comments 1 reply
|
Hello,
Thanks! |
From here: flake = {
overlays.default = _final: prev: {
local = withSystem prev.stdenv.hostPlatform.system ({ config, ... }: config.packages);
};
};
Don't forget that you can also access your packages through Hope it helps! |
Thank you! Figured it out, checked out your configuration and got it working with