1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00
nix-darwin/modules/system/defaults/magicmouse.nix
2024-04-19 04:05:50 +02: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.
'';
};
};
}