Files
Evan Reichard ff5cd52dce 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
2026-02-25 11:49:23 -05:00

41 lines
748 B
Nix

{ lib, ... }:
{
system.stateVersion = 6;
# Determinate Config
determinateNix = {
enable = true;
nixosVmBasedLinuxBuilder = {
enable = true;
config.virtualisation.diskSize = lib.mkForce 61440;
};
};
system.primaryUser = "evanreichard";
system.defaults = {
trackpad = {
TrackpadThreeFingerDrag = true;
};
dock = {
autohide = true;
};
menuExtraClock = {
Show24Hour = true;
ShowSeconds = true;
};
NSGlobalDomain = {
KeyRepeat = 2;
NSWindowShouldDragOnGesture = true;
AppleICUForce24HourTime = true;
};
WindowManager = {
HideDesktop = true;
};
};
security.pam.services.sudo_local.touchIdAuth = true;
reichard = { };
}