13 lines
229 B
Nix
13 lines
229 B
Nix
|
{ lib, inputs }:
|
||
|
|
||
|
final: prev: {
|
||
|
master = import inputs.master {
|
||
|
inherit (prev) system;
|
||
|
config.allowUnfree = true;
|
||
|
};
|
||
|
stable = import inputs.stable {
|
||
|
inherit (prev) system;
|
||
|
config.allowUnfree = true;
|
||
|
};
|
||
|
}
|