summary refs log tree commit diff
path: root/lib/tests/modules/declare-attrsOf.nix
blob: b3999de7e5fba5ce809ebc10f307cb8650a66c95 (plain) (blame)
1
2
3
4
5
6
{ lib, ... }: {
  options.value = lib.mkOption {
    type = lib.types.attrsOf lib.types.str;
    default = {};
  };
}