10 lines
181 B
Nix
10 lines
181 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
unstable-packages = final: _prev: {
|
||
|
unstable = import inputs.nixpkgs-unstable {
|
||
|
system = final.system;
|
||
|
config.allowUnfree = true;
|
||
|
};
|
||
|
};
|
||
|
}
|