11 lines
155 B
Nix
11 lines
155 B
Nix
|
{ channels, inputs, ... }:
|
||
|
|
||
|
final: prev:
|
||
|
|
||
|
{
|
||
|
unstable = import inputs.nixpkgs-unstable {
|
||
|
system = final.system;
|
||
|
config.allowUnfree = true;
|
||
|
};
|
||
|
}
|