0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-16 07:00:43 +03:00
nixpkgs/lib/tests/modules/strMatching-merge.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
241 B
Nix
Raw Normal View History

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