mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
15 lines
304 B
Nix
15 lines
304 B
Nix
{
|
|
services.macos-remap-keys = {
|
|
enable = true;
|
|
keyboard = {
|
|
Capslock = "Backspace";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
launchAgent=LaunchAgents/org.nix-community.home.remap-keys.plist
|
|
assertFileExists "$launchAgent"
|
|
assertFileContent "$launchAgent" ${./basic-agent.plist}
|
|
'';
|
|
}
|