From ff5cd52dce3e03c47f97768061f373fc358097b2 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Wed, 25 Feb 2026 11:49:23 -0500 Subject: [PATCH] feat(systems): add trackpad gesture, 24-hour time, and Touch ID sudo - Enable NSWindowShouldDragOnGesture for drag gestures - Force 24-hour time format via AppleICUForce24HourTime - Add Touch ID authentication for sudo commands - Remove outdated comment about Three Finger Drag --- systems/aarch64-darwin/mac-va-mbp-work/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/systems/aarch64-darwin/mac-va-mbp-work/default.nix b/systems/aarch64-darwin/mac-va-mbp-work/default.nix index bdf7328..ca23aec 100644 --- a/systems/aarch64-darwin/mac-va-mbp-work/default.nix +++ b/systems/aarch64-darwin/mac-va-mbp-work/default.nix @@ -12,7 +12,6 @@ }; }; - # Three Finger Drag system.primaryUser = "evanreichard"; system.defaults = { trackpad = { @@ -27,11 +26,15 @@ }; NSGlobalDomain = { KeyRepeat = 2; + NSWindowShouldDragOnGesture = true; + AppleICUForce24HourTime = true; }; WindowManager = { HideDesktop = true; }; }; + security.pam.services.sudo_local.touchIdAuth = true; + reichard = { }; }