nix-config/modules/hardware.nix
Donovan Glover 6c34cce882
treewide(nix): Remove duplicate attribute name usage
Found thanks to nixd showing different colors for these.
2024-08-10 20:55:46 -04:00

96 lines
2.1 KiB
Nix

{
pkgs,
config,
lib,
...
}:
let
inherit (pkgs) piper interception-tools;
inherit (pkgs.interception-tools-plugins) dual-function-keys;
inherit (builtins) toJSON;
inherit (lib)
mkEnableOption
mkIf
getExe
singleton
;
inherit (cfg)
mouseSettings
lidIgnore
keyboardBinds
bluetooth
;
dualFunctionKeysConfig = "dual-function-keys.yaml";
cfg = config.modules.hardware;
in
{
options.modules.hardware = {
keyboardBinds = mkEnableOption "caps lock as ctrl when held and esc when tapped";
mouseSettings = mkEnableOption "piper for gaming mice";
bluetooth = mkEnableOption "bluetooth support";
lidIgnore = mkEnableOption "ignoring the laptop lid on close";
};
config = {
hardware.bluetooth.enable = mkIf bluetooth true;
services = {
ratbagd.enable = mkIf mouseSettings true;
blueman.enable = mkIf bluetooth true;
logind = {
lidSwitch = mkIf lidIgnore "ignore";
extraConfig = "HandlePowerKey=suspend";
};
interception-tools = {
enable = mkIf keyboardBinds true;
plugins = [ dual-function-keys ];
udevmonConfig = toJSON (singleton {
JOB = # bash
''
${interception-tools}/bin/intercept -g $DEVNODE |
${getExe dual-function-keys} -c /etc/${dualFunctionKeysConfig} |
${interception-tools}/bin/uinput -d $DEVNODE
'';
DEVICE = {
EVENTS = {
EV_KEY = [
"KEY_CAPSLOCK"
"KEY_ESC"
];
};
};
});
};
};
environment = {
systemPackages = mkIf mouseSettings [ piper ];
etc.${dualFunctionKeysConfig}.text = toJSON {
TIMING = [
{ TAP_MILLISEC = 1000; }
{ DOUBLE_TAP_MILLISEC = 0; }
{ SYNTHETIC_KEYS_PAUSE_MILLISEC = 0; }
];
MAPPINGS = [
{
KEY = "KEY_CAPSLOCK";
TAP = "KEY_ESC";
HOLD = "KEY_LEFTCTRL";
}
];
};
};
};
}