8 lines
135 B
Nix
8 lines
135 B
Nix
{ inputs, ... }:
|
|
final: prev: {
|
|
unstable = import inputs.unstable {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|