1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-10-26 22:08:03 +03:00
nix-darwin/tests/system-defaults-write.nix
2017-05-14 01:17:54 +02:00

13 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
'';
}