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