feat: update system

This commit is contained in:
2024-06-24 19:50:16 +02:00
parent 3d91c3221e
commit eb85d22494
12 changed files with 254 additions and 135 deletions

View File

@@ -0,0 +1,19 @@
{ lib, config, ... }:
let
cfg = config.presets.remaps.no-accidental-macro;
in
{
options.presets.remaps.no-accidental-macro = {
enable = lib.mkEnableOption "no accidental macro";
};
config = lib.mkIf cfg.enable {
keymaps = [
{
key = "Q";
mode = "n";
action = "<nop>";
}
];
};
}