12 lines
231 B
Nix
12 lines
231 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
# Gives access to unstable packages everywhere
|
|
unstable-packages = final: _prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|