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