nixlets/tests/fixtures/example/values.nix

13 lines
192 B
Nix
Raw Permalink Normal View History

{lib, ...}:
with lib; {
options = {
example = mkOption {
type = types.str;
default = "Hello world!";
description = ''
Some description.
'';
};
};
}