plugins/cmp: remove with lib;

This commit is contained in:
Austin Horstman 2024-10-06 09:57:31 -05:00
parent d71cfaaae8
commit 62b87e5b56
No known key found for this signature in database
13 changed files with 92 additions and 92 deletions

View file

@ -1,10 +1,11 @@
{ lib, helpers }:
with lib;
let
inherit (lib) types;
sourceType = types.submodule {
freeformType = with types; attrsOf anything;
options = {
name = mkOption {
name = lib.mkOption {
type = types.str;
description = "The name of the source.";
example = "buffer";
@ -79,7 +80,7 @@ let
};
};
in
mkOption {
lib.mkOption {
default = [ ];
type = with lib.types; maybeRaw (listOf sourceType);
description = ''