mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
13 lines
201 B
Nix
13 lines
201 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.set = lib.mkOption {
|
|
default = { };
|
|
example = { a = 1; };
|
|
type = lib.types.attrsOf lib.types.int;
|
|
description = ''
|
|
Some descriptive text
|
|
'';
|
|
};
|
|
}
|