flake-config/modules/unstable.nix
2025-11-09 23:51:40 -05:00

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;
};
}