Files
parana/overlays/default.nix
2026-07-10 20:07:29 -04:00

9 lines
237 B
Nix

{
# Overlay custom derivations into nixpkgs so you can use pkgs.<name>
# These packages are automatically available in all modules and configurations
customPackages = final: _prev:
import ../pkgs {
pkgs = final;
};
}