How to user personal package in the config?
ztlevi opened this issue · 2 comments
ztlevi commented
Hi,
I'm trying to add some packages that haven't been added to nixpkgs. But I couldn't figure out the way to use the defined packages in the config.
Basically, I create a new stdenv.mkDerivation
under ./pakcages/<new-package>.nix
. But when I try to use that package in the config, it couldn't find it.
How to add personal packages in the config?
hlissner commented
This line puts it under pkgs.my.*
. So pkgs.my.new-package
should hold the package you're looking for.
ztlevi commented