nix-conf/overlays/default.nix

9 lines
169 B
Nix
Raw Normal View History

2024-04-22 05:58:04 +00:00
{inputs, ...}: {
master-packages = final: _prev: {
masterPkgs = import inputs.master {
system = final.system;
config.allowUnfree = true;
};
};
}