nix-managed-macbook/system.nix
Abhinav Sarkar b19fae6562 flake.lock: Update
Flake lock file updates:

• Updated input 'home-manager':
    'github:nix-community/home-manager/97ac0801d187b2911e8caa45316399de12f6f199' (2025-02-18)
  → 'github:nix-community/home-manager/74f0a8546e3f2458c870cf90fc4b38ac1f498b17' (2025-02-25)
• Updated input 'nix-darwin':
    'github:LnL7/nix-darwin/6ab392f626a19f1122d1955c401286e1b7cf6b53' (2025-02-19)
  → 'github:LnL7/nix-darwin/42be12b510253d750138ec90c66decc282298b44' (2025-02-25)
• Updated input 'nix-index-database':
    'github:nix-community/nix-index-database/ae15068e79e22b76c344f0d7f8aed1bb1c5b0b63' (2025-02-16)
  → 'github:nix-community/nix-index-database/465792533d03e6bb9dc849d58ab9d5e31fac9023' (2025-02-23)
• Updated input 'nix-vscode-extensions':
    'github:nix-community/nix-vscode-extensions/fe953b35b591faf57660800fb6e8b74956eea846' (2025-02-19)
  → 'github:nix-community/nix-vscode-extensions/4283e3e25d5c82e96fe3b575175b33abe66c5031' (2025-02-26)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/632f04521e847173c54fa72973ec6c39a371211c' (2025-02-18)
  → 'github:nixos/nixpkgs/d9b69c3ec2a2e2e971c534065bdd53374bd68b97' (2025-02-24)
• Updated input 'nixpkgs-stable':
    'github:nixos/nixpkgs/41bc1723c8789e9c46a1bb4897022f80d2cf147d' (2025-02-17)
  → 'github:nixos/nixpkgs/060b03c5d950ee0592d16e97c63860640bd31f50' (2025-02-24)
2025-02-26 19:59:59 +05:30

54 lines
1.4 KiB
Nix

{ pkgs, inputs, ... }:
{
security.pam.services.sudo_local = {
enable = true;
touchIdAuth = true;
reattach = 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;
};
}