modules/input: add modes to disable arrows and page buttons

This commit is contained in:
Dmitriy Pleshevskiy 2024-04-28 02:14:03 +03:00
parent bbf171f51b
commit 50aa153e3a
Signed by: pleshevskiy
GPG Key ID: 17041163DA10A9A2

View File

@ -26,7 +26,7 @@ in
};
mode = mkOption {
type = types.mode;
default = [ "n" "v" ];
default = [ "n" "v" "o" "c" ];
};
};
pageButtons = {
@ -36,7 +36,7 @@ in
};
mode = mkOption {
type = types.mode;
default = "";
default = [ "" "!" ];
};
};
};