9 lines
183 B
Nix
9 lines
183 B
Nix
{inputs, ...}: {
|
|
flake.overlays.unstable = final: prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
system = prev.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|