blob: de5c0032c7e6e1d2a78aa0b9fb463e104beda016 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ lib, ... }:
{
imports = [
{
options.sm = lib.mkOption {
type = lib.types.strMatching "\\(.*\\)";
};
}
{
options.sm = lib.mkOption {
type = lib.types.strMatching "\\(.*\\)";
};
}
];
}
|