feat: add keybindings as module

This commit is contained in:
Swarsel 2024-07-25 16:02:41 +02:00
parent e468436cce
commit 6a63090c68
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
6 changed files with 260 additions and 255 deletions

View file

@ -23,6 +23,11 @@ in
options.swarselsystems.standardinputs = mkOption {
type = types.attrsOf (types.attrsOf types.str);
default = lib.recursiveUpdate (lib.recursiveUpdate config.swarselsystems.touchpad config.swarselsystems.kyria) config.swarselsystems.inputs;
internal = true;
};
options.swarselsystems.keybindings = mkOption {
type = types.attrsOf types.str;
default = { };
};