mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 17:01:01 +00:00
18 lines
436 B
Nix
18 lines
436 B
Nix
{ ... }:
|
|
{
|
|
security.pam.services.sudo_local.touchIdAuth = true;
|
|
|
|
# Karabiner-Elements is managed via Homebrew cask because nix-darwin's
|
|
# built-in module is broken with 15.7+ (missing karabiner_grabber/observer binaries).
|
|
|
|
system.defaults = {
|
|
dock.autohide = true;
|
|
dock.show-recents = false;
|
|
|
|
NSGlobalDomain = {
|
|
ApplePressAndHoldEnabled = false;
|
|
InitialKeyRepeat = 15;
|
|
KeyRepeat = 2;
|
|
};
|
|
};
|
|
}
|