nvf/modules/wrapper/lib/options.nix
2026-04-10 17:04:12 +00:00

11 lines
285 B
Nix

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