mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
e65131e69c
This process was automated by [my fork of `nix-doc-munge`]; thanks to @pennae for writing this tool! It automatically checks that the resulting documentation doesn't change, although my fork loosens this a little to ignore some irrelevant whitespace and typographical differences. As of this commit there is no DocBook remaining in the options documentation. You can play along at home if you want to reproduce this commit: $ NIX_PATH=nixpkgs=flake:nixpkgs/c1bca7fe84c646cfd4ebf3482c0e6317a0b13f22 \ nix shell nixpkgs#coreutils \ -c find . -name '*.nix' \ -exec nix run github:emilazy/nix-doc-munge/0a7190f600027bf7baf6cb7139e4d69ac2f51062 \ {} + [my fork of `nix-doc-munge`]: https://github.com/emilazy/nix-doc-munge
78 lines
2.6 KiB
Nix
78 lines
2.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.system.keyboard;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
system.keyboard.enableKeyMapping = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc "Whether to enable keyboard mappings.";
|
|
};
|
|
|
|
system.keyboard.remapCapsLockToControl = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc "Whether to remap the Caps Lock key to Control.";
|
|
};
|
|
|
|
system.keyboard.remapCapsLockToEscape = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc "Whether to remap the Caps Lock key to Escape.";
|
|
};
|
|
|
|
system.keyboard.nonUS.remapTilde = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc "Whether to remap the Tilde key on non-us keyboards.";
|
|
};
|
|
|
|
system.keyboard.swapLeftCommandAndLeftAlt = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc "Whether to swap the left Command key and left Alt key.";
|
|
};
|
|
|
|
system.keyboard.userKeyMapping = mkOption {
|
|
internal = true;
|
|
type = types.listOf (types.attrsOf types.int);
|
|
default = [];
|
|
description = lib.mdDoc ''
|
|
List of keyboard mappings to apply, for more information see
|
|
<https://developer.apple.com/library/content/technotes/tn2450/_index.html>.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = {
|
|
|
|
warnings = mkIf (!cfg.enableKeyMapping && cfg.userKeyMapping != [])
|
|
[ "system.keyboard.enableKeyMapping is not enabled, keyboard mappings will not be configured." ];
|
|
|
|
system.keyboard.userKeyMapping = [
|
|
(mkIf cfg.remapCapsLockToControl { HIDKeyboardModifierMappingSrc = 30064771129; HIDKeyboardModifierMappingDst = 30064771296; })
|
|
(mkIf cfg.remapCapsLockToEscape { HIDKeyboardModifierMappingSrc = 30064771129; HIDKeyboardModifierMappingDst = 30064771113; })
|
|
(mkIf cfg.nonUS.remapTilde { HIDKeyboardModifierMappingSrc = 30064771172; HIDKeyboardModifierMappingDst = 30064771125; })
|
|
(mkIf cfg.swapLeftCommandAndLeftAlt {
|
|
HIDKeyboardModifierMappingSrc = 30064771299;
|
|
HIDKeyboardModifierMappingDst = 30064771298;
|
|
})
|
|
(mkIf cfg.swapLeftCommandAndLeftAlt {
|
|
HIDKeyboardModifierMappingSrc = 30064771298;
|
|
HIDKeyboardModifierMappingDst = 30064771299;
|
|
})
|
|
];
|
|
|
|
system.activationScripts.keyboard.text = optionalString cfg.enableKeyMapping ''
|
|
# Configuring keyboard
|
|
echo "configuring keyboard..." >&2
|
|
hidutil property --set '{"UserKeyMapping":${builtins.toJSON cfg.userKeyMapping}}' > /dev/null
|
|
'';
|
|
|
|
};
|
|
}
|