blob: 93b13f1ab4e4f7a53fe514bd85f5a6133883e16e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{lib, ...}: let
inherit (lib.options) mkOption;
inherit (lib.types) attrsOf raw;
in {
options.vim.lib = mkOption {
# The second type should be one without merge semantics and which allows function values.
type = attrsOf raw;
default = {};
internal = true;
};
}
|