summary refs log blame commit diff
path: root/lib/tests/modules/declare-lazyAttrsOf.nix
blob: 1d9fec25f9084da98e30d943bc36e382a4bf7509 (plain) (tree)
1
2
3
4
5
6





                                                                                    
{ lib, ... }: {
  options.value = lib.mkOption {
    type = lib.types.lazyAttrsOf (lib.types.str // { emptyValue.value = "empty"; });
    default = {};
  };
}