17 lines
297 B
Nix
17 lines
297 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
}:
|
|
{
|
|
nixpkgs-stable-unstable = final: prev: {
|
|
unstable = import inputs.nixpkgs {
|
|
system = prev.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
stable = import inputs.nixpkgs-stable {
|
|
system = prev.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|