depot/third_party/nixpkgs/lib/tests/modules/strMatching-merge.nix

15 lines
241 B
Nix

{ lib, ... }:
{
imports = [
{
options.sm = lib.mkOption {
type = lib.types.strMatching "\(.*\)";
};
}
{
options.sm = lib.mkOption {
type = lib.types.strMatching "\(.*\)";
};
}
];
}