8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
12 lines
201 B
Nix
12 lines
201 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.set = lib.mkOption {
|
|
default = { };
|
|
example = { a = 1; };
|
|
type = lib.types.attrsOf lib.types.int;
|
|
description = ''
|
|
Some descriptive text
|
|
'';
|
|
};
|
|
}
|