nix-exprs/flake/modules/passthru.nix
2024-11-25 18:34:12 +08:00

10 lines
287 B
Nix

# Portions of this file are sourced from
# https://github.com/linyinfeng/nur-packages/blob/73fea6901c19df2f480e734a75bc22dbabde3a53/flake-modules/passthru.nix
{ lib, ... }:
{
options.passthru = lib.mkOption {
visible = false;
type = with lib.types; attrsOf unspecified;
};
}