mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
7 lines
118 B
Nix
7 lines
118 B
Nix
{ lib, ... }: {
|
|
options.value = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.str;
|
|
default = {};
|
|
};
|
|
}
|