1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-06 08:47:00 +00:00
nix-darwin/modules/system/defaults/magicmouse.nix
2021-08-24 17:13:48 -04:00

21 lines
371 B
Nix

{ config, lib, ... }:
with lib;
{
options = {
system.defaults.magicmouse.MouseButtonMode = mkOption {
type = types.nullOr (types.enum [
"OneButton"
"TwoButton"
]);
default = null;
description = ''
"OneButton": any tap is a left click. "TwoButton": allow left-
and right-clicking.
'';
};
};
}