18 lines
261 B
Nix
18 lines
261 B
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
unstableOverlay = final: prev: {
|
|
unstable = import inputs.unstable {
|
|
inherit (final.stdenv.hostPlatform) system;
|
|
inherit (config.nixpkgs) config;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
nixpkgs.overlays = [ unstableOverlay ];
|
|
}
|