8 lines
155 B
Nix
8 lines
155 B
Nix
{ inputs, ... }:
|
|
final: _prev: {
|
|
unstable = import inputs.nixpkgs {
|
|
system = final.stdenv.hostPlatform.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|