0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-15 22:50:42 +03:00
nixpkgs/lib/tests/modules/strMatching-merge.nix
2024-12-09 17:40:32 +01:00

15 lines
241 B
Nix

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