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