9 lines
160 B
Nix
9 lines
160 B
Nix
|
{inputs, ...}: [
|
||
|
(final: _prev: {
|
||
|
unstable = import inputs.nixpkgs-unstable {
|
||
|
system = final.system;
|
||
|
config.allowUnfree = true;
|
||
|
};
|
||
|
})
|
||
|
]
|