mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
12 lines
369 B
Nix
12 lines
369 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
system.defaults.NSGlobalDomain.KeyRepeat = 1;
|
|
system.defaults.dock.orientation = "left";
|
|
|
|
test = ''
|
|
echo checking defaults write in /activate-user >&2
|
|
grep "defaults write -g 'KeyRepeat' -int 1" ${config.out}/activate-user
|
|
grep "defaults write com.apple.dock 'orientation' -string 'left'" ${config.out}/activate-user
|
|
'';
|
|
}
|