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
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 "\\(.*\\)";
};
}
];
}