nixpkgs/lib/tests/modules/strMatching-merge.nix
2025-01-07 19:49:28 +01:00

15 lines
245 B
Nix

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