nix-conf/overlays/default.nix
2024-04-22 11:28:04 +05:30

8 lines
169 B
Nix

{inputs, ...}: {
master-packages = final: _prev: {
masterPkgs = import inputs.master {
system = final.system;
config.allowUnfree = true;
};
};
}