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