8 lines
182 B
Nix
8 lines
182 B
Nix
{ inputs, ... }: {
|
|
unstable-packages = final: _prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
inherit (final) system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|