8 lines
160 B
Nix
Executable File
8 lines
160 B
Nix
Executable File
{ inputs, ... }:
|
|
final: _prev: {
|
|
stable = import inputs.nixpkgs-stable {
|
|
system = final.stdenv.hostPlatform.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|