From cf32b498bcdbcf0a7711deb67ceb285e66f93d63 Mon Sep 17 00:00:00 2001 From: saygo-png Date: Sat, 18 Oct 2025 03:35:44 +0200 Subject: [PATCH] modules/autocmd: remove helpers Signed-off-by: saygo-png --- modules/autocmd.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/autocmd.nix b/modules/autocmd.nix index f873d0a2..4218e91c 100644 --- a/modules/autocmd.nix +++ b/modules/autocmd.nix @@ -1,13 +1,12 @@ { lib, - helpers, config, ... }: { options = { autoGroups = lib.mkOption { - type = lib.types.attrsOf helpers.autocmd.autoGroupOption; + type = lib.types.attrsOf lib.nixvim.autocmd.autoGroupOption; default = { }; description = "augroup definitions"; example = { @@ -18,7 +17,7 @@ }; autoCmd = lib.mkOption { - type = lib.types.listOf helpers.autocmd.autoCmdOption; + type = lib.types.listOf lib.nixvim.autocmd.autoCmdOption; default = [ ]; description = "autocmd definitions"; example = [