# This file defines overlays {inputs, ...}: { # This one brings our custom packages from the 'pkgs' directory additions = final: _prev: import ../pkgs {pkgs = final;}; # This one contains whatever you want to overlay modifications = final: prev: { }; master-packages = final: _prev: { master = import inputs.nixpkgs-master { system = final.system; config.allowUnfree = true; }; }; }