Flake lock file updates: • Updated input 'home-manager': 'github:nix-community/home-manager/8544cd092047a7e92d0dce011108a563de7fc0f2' (2025-02-01) → 'github:nix-community/home-manager/83bd3a26ac0526ae04fa74df46738bb44b89dcdd' (2025-02-11) • Updated input 'nix-darwin': 'github:LnL7/nix-darwin/49b807fa7c37568d7fbe2aeaafb9255c185412f9' (2025-01-30) → 'github:LnL7/nix-darwin/a6746213b138fe7add88b19bafacd446de574ca7' (2025-02-11) • Updated input 'nix-vscode-extensions': 'github:nix-community/nix-vscode-extensions/e26741603fb047295c7015c93746b75601c8c490' (2025-02-01) → 'github:nix-community/nix-vscode-extensions/00d1dbcc3d422c6eabf9285759a4469a5a5a7542' (2025-02-12) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/9189ac18287c599860e878e905da550aa6dec1cd' (2025-01-31) → 'github:nixos/nixpkgs/b2243f41e860ac85c0b446eadc6930359b294e79' (2025-02-09) • Updated input 'nixpkgs-stable': 'github:nixos/nixpkgs/7dfcd13937964a3592766064a8bed6d2b9666eaa' (2025-01-29) → 'github:nixos/nixpkgs/94792ab2a6beaec81424445bf917ca2556fbeade' (2025-02-10)
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
security.pam.enableSudoTouchIdAuth = true;
|
|
system = {
|
|
defaults = {
|
|
loginwindow = {
|
|
GuestEnabled = false;
|
|
DisableConsoleAccess = true;
|
|
};
|
|
dock = {
|
|
appswitcher-all-displays = false;
|
|
autohide = true;
|
|
magnification = true;
|
|
mru-spaces = false;
|
|
orientation = "bottom";
|
|
wvous-bl-corner = 13;
|
|
wvous-br-corner = 14;
|
|
wvous-tl-corner = 2;
|
|
wvous-tr-corner = 3;
|
|
};
|
|
finder = {
|
|
AppleShowAllExtensions = true;
|
|
FXPreferredViewStyle = "Nlsv";
|
|
};
|
|
NSGlobalDomain = {
|
|
AppleEnableMouseSwipeNavigateWithScrolls = true;
|
|
AppleEnableSwipeNavigateWithScrolls = true;
|
|
AppleICUForce24HourTime = true;
|
|
AppleInterfaceStyle = "Dark";
|
|
AppleInterfaceStyleSwitchesAutomatically = false;
|
|
NSAutomaticCapitalizationEnabled = false;
|
|
NSAutomaticDashSubstitutionEnabled = true;
|
|
NSAutomaticSpellingCorrectionEnabled = false;
|
|
NSAutomaticPeriodSubstitutionEnabled = false;
|
|
NSAutomaticQuoteSubstitutionEnabled = true;
|
|
_HIHideMenuBar = true;
|
|
};
|
|
trackpad = {
|
|
Clicking = true;
|
|
TrackpadRightClick = true;
|
|
};
|
|
};
|
|
keyboard = {
|
|
enableKeyMapping = true;
|
|
remapCapsLockToControl = true;
|
|
};
|
|
stateVersion = 4;
|
|
};
|
|
}
|