35 lines
812 B
Nix
35 lines
812 B
Nix
{ config, lib, ... }:
|
|
{
|
|
system.defaults.CustomUserPreferences = {
|
|
"com.apple.symbolichotkeys" = {
|
|
AppleSymbolicHotKeys = {
|
|
"52" = {
|
|
# Disable '^ + Cmd + D' to "Turn Dock hiding on/off"
|
|
enabled = false;
|
|
};
|
|
"160" = {
|
|
# Disable "Show Launchpad"
|
|
enabled = false;
|
|
};
|
|
|
|
"32" = {
|
|
# Mission Control - Trigger Mission Control
|
|
enabled = true;
|
|
value = {
|
|
type = "standard";
|
|
parameters = "65535, 126, 11534336";
|
|
};
|
|
};
|
|
"34" = {
|
|
# Mission Control - Trigger Mission Control
|
|
enabled = true;
|
|
value = {
|
|
type = "standard";
|
|
parameters = "65535, 126, 11665408";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|