1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 08:59:20 +03:00
nixpkgs/lib/tests/modules/strMatching-merge.nix

16 lines
245 B
Nix
Raw Normal View History

{ lib, ... }:
{
imports = [
{
options.sm = lib.mkOption {
2024-12-23 21:58:07 +01:00
type = lib.types.strMatching "\\(.*\\)";
};
}
{
options.sm = lib.mkOption {
2024-12-23 21:58:07 +01:00
type = lib.types.strMatching "\\(.*\\)";
};
}
];
}