nix-super/tests/modules/declare-set.nix
2023-08-16 15:46:37 +02:00

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
'';
};
}