mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 23:49:43 +00:00
8 lines
169 B
Nix
8 lines
169 B
Nix
{inputs, ...}: {
|
|
master-packages = final: _prev: {
|
|
masterPkgs = import inputs.master {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|