From 2f9117f326657fe547a598486ff5cb7ef1b5ceb6 Mon Sep 17 00:00:00 2001 From: pagedmov Date: Tue, 3 Mar 2026 21:12:50 -0500 Subject: [PATCH] fixup! Updated home manager module with options for recent feature additions --- nix/hm-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/hm-module.nix b/nix/hm-module.nix index 89f6ca1..a1e04ce 100644 --- a/nix/hm-module.nix +++ b/nix/hm-module.nix @@ -48,10 +48,10 @@ in }; keymaps = lib.mkOption { - type = lib.types.attrsOf (lib.types.submodule { + type = lib.types.listOf (lib.types.submodule { options = { modes = lib.mkOption { - type = lib.types.enum [ "n" "i" "x" "v" "o" "r" ]; + type = lib.listOf (lib.types.enum [ "n" "i" "x" "v" "o" "r" ]); default = []; description = "The editing modes this keymap can be used in"; };