11 lines
180 B
Nix
11 lines
180 B
Nix
{inputs, ...}: {
|
|
|
|
nixpkgs-unstable = final: _prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|
|
|