mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
i3: reallow using null to disable a keybinding
(cherry picked from commit d5cc53a4e1)
This commit is contained in:
committed by
Robert Helgesson
parent
9f013a8fb8
commit
e6bc17e7fb
@@ -411,7 +411,7 @@ let
|
||||
};
|
||||
|
||||
keybindings = mkOption {
|
||||
type = types.attrsOf types.str;
|
||||
type = types.attrsOf (types.nullOr types.str);
|
||||
default = mapAttrs (n: mkOptionDefault) {
|
||||
"${cfg.config.modifier}+Return" = "exec i3-sensible-terminal";
|
||||
"${cfg.config.modifier}+Shift+q" = "kill";
|
||||
@@ -486,7 +486,7 @@ let
|
||||
};
|
||||
|
||||
keycodebindings = mkOption {
|
||||
type = types.attrsOf types.str;
|
||||
type = types.attrsOf (types.nullOr types.str);
|
||||
default = {};
|
||||
description = ''
|
||||
An attribute set that assigns keypress to an action using key code.
|
||||
|
||||
Reference in New Issue
Block a user