2024-06-30 08:16:52 +00:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
2024-05-01 22:14:04 +00:00
|
|
|
options.value = lib.mkOption {
|
|
|
|
type = lib.types.lazyAttrsOf (lib.types.str // { emptyValue.value = "empty"; });
|
2024-06-30 08:16:52 +00:00
|
|
|
default = { };
|
2024-05-01 22:14:04 +00:00
|
|
|
};
|
|
|
|
}
|