1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00
nixpkgs/lib/tests/modules/declare-attrsOf.nix
2020-01-10 16:20:31 +01:00

7 lines
118 B
Nix

{ lib, ... }: {
options.value = lib.mkOption {
type = lib.types.attrsOf lib.types.str;
default = {};
};
}