nixpkgs/lib/tests/modules/strMatching-merge.nix
2024-12-09 17:40:32 +01:00

16 lines
241 B
Nix

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