1
0

macos: set up symbol hotkeys

This commit is contained in:
2025-09-21 17:00:10 -07:00
parent d93557d7bf
commit 8b2d1404ae
2 changed files with 18 additions and 0 deletions

17
system/macos/hotkeys.nix Normal file
View File

@@ -0,0 +1,17 @@
{ 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;
};
};
};
};
}