From c460f49deaa25c5c80a939cedee60c686cf9a6fc Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Sun, 28 Apr 2024 00:42:30 +0300 Subject: [PATCH] modules/input: disable ex mode by default --- modules/input.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/input.nix b/modules/input.nix index 26a7637..663a018 100644 --- a/modules/input.nix +++ b/modules/input.nix @@ -18,7 +18,7 @@ in apply = x: assert (builtins.stringLength x == 1 || abort " `${x}` is longer than one character is not allowed"); x; }; - exMode.enable = (mkEnableOption "Ex mode") // { default = true; }; + exMode.enable = mkEnableOption "Ex mode"; arrowKeys = { disable = mkOption { type = types.bool;