9 lines
268 B
Nix
9 lines
268 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
# this is quite silly but it works and with it you can specify packages to
|
|
# come from unstable like so:
|
|
# unstable.my_package_name
|
|
_module.args.unstable = import inputs.unstable {
|
|
inherit (pkgs.stdenv.hostPlatform) system;
|
|
};
|
|
}
|