summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/defaults/NSGlobalDomain.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix
index ed78a7c..15a5017 100644
--- a/modules/system/defaults/NSGlobalDomain.nix
+++ b/modules/system/defaults/NSGlobalDomain.nix
@@ -8,11 +8,25 @@ with lib;
system.defaults.NSGlobalDomain.InitialKeyRepeat = mkOption {
type = types.nullOr types.int;
default = null;
+ description = ''
+ # Apple menu > System Preferences > Keyboard
+ If you press and hold certain keyboard keys when in a text area, the key’s character begins to repeat.
+ For example, the Delete key continues to remove text for as long as you hold it down.
+
+ This sets how long you must hold down the key before it starts repeating.
+ '';
};
system.defaults.NSGlobalDomain.KeyRepeat = mkOption {
type = types.nullOr types.int;
default = null;
+ description = ''
+ # Apple menu > System Preferences > Keyboard
+ If you press and hold certain keyboard keys when in a text area, the key’s character begins to repeat.
+ For example, the Delete key continues to remove text for as long as you hold it down.
+
+ This sets how fast it repeats once it starts.
+ '';
};
};