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