mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
21 lines
371 B
Nix
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.
|
|
'';
|
|
};
|
|
|
|
};
|
|
}
|