mirror of
https://github.com/cupcakearmy/nix-macos.git
synced 2025-04-03 13:46:07 +00:00
cleanup darwin config
This commit is contained in:
parent
e96cac4f4b
commit
0d0baa3b60
59
darwin.nix
59
darwin.nix
@ -20,48 +20,52 @@
|
|||||||
# Nix Darwin
|
# Nix Darwin
|
||||||
# https://daiderd.com/nix-darwin/manual/index.html
|
# https://daiderd.com/nix-darwin/manual/index.html
|
||||||
|
|
||||||
|
system.defaults = {
|
||||||
# Security
|
# Security
|
||||||
system.defaults.screensaver.askForPassword = true;
|
screensaver.askForPassword = true;
|
||||||
system.defaults.screensaver.askForPasswordDelay = 0;
|
screensaver.askForPasswordDelay = 0;
|
||||||
system.defaults.loginwindow.GuestEnabled = false;
|
loginwindow.GuestEnabled = false;
|
||||||
|
|
||||||
# Dock
|
# Dock
|
||||||
system.defaults.dock.autohide = true;
|
dock = {
|
||||||
system.defaults.dock.orientation = "left";
|
autohide = true;
|
||||||
system.defaults.dock.show-recents = false;
|
orientation = "left";
|
||||||
system.defaults.dock.persistent-apps = [
|
show-recents = false;
|
||||||
|
persistent-apps = [
|
||||||
"/Applications/Arc.app"
|
"/Applications/Arc.app"
|
||||||
"/Applications/Ghostty.app"
|
"/Applications/Ghostty.app"
|
||||||
"/Applications/VSCodium.app"
|
"/Applications/VSCodium.app"
|
||||||
"/Applications/Spotify.app"
|
"/Applications/Spotify.app"
|
||||||
"/System/Applications/System Settings.app"
|
"/System/Applications/System Settings.app"
|
||||||
];
|
];
|
||||||
system.defaults.dock.persistent-others = [ ];
|
persistent-others = [ ];
|
||||||
|
};
|
||||||
|
|
||||||
|
# Finder
|
||||||
|
finder = {
|
||||||
|
AppleShowAllExtensions = true;
|
||||||
|
ShowPathbar = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Trackpad
|
||||||
|
NSGlobalDomain = {
|
||||||
|
InitialKeyRepeat = 25;
|
||||||
|
KeyRepeat = 2;
|
||||||
|
"com.apple.mouse.tapBehavior" = 1;
|
||||||
|
"com.apple.trackpad.scaling" = 0.875;
|
||||||
|
};
|
||||||
|
trackpad = {
|
||||||
|
Dragging = true;
|
||||||
|
Clicking = true;
|
||||||
|
TrackpadRightClick = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Input devices
|
# Input devices
|
||||||
system.keyboard = {
|
system.keyboard = {
|
||||||
enableKeyMapping = true;
|
enableKeyMapping = true;
|
||||||
remapCapsLockToEscape = true;
|
remapCapsLockToEscape = true;
|
||||||
userKeyMapping = [
|
|
||||||
{
|
|
||||||
# Unbind cmd + space
|
|
||||||
HIDKeyboardModifierMappingSrc = 30064771129; # Command + Space
|
|
||||||
HIDKeyboardModifierMappingDst = 0; # No action (unbind)
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
system.defaults.NSGlobalDomain.InitialKeyRepeat = 25;
|
|
||||||
system.defaults.NSGlobalDomain.KeyRepeat = 2;
|
|
||||||
system.defaults.NSGlobalDomain."com.apple.mouse.tapBehavior" = 1;
|
|
||||||
system.defaults.NSGlobalDomain."com.apple.trackpad.scaling" = 0.875;
|
|
||||||
system.defaults.trackpad = {
|
|
||||||
Dragging = true;
|
|
||||||
Clicking = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Finder
|
|
||||||
system.defaults.finder.AppleShowAllExtensions = true;
|
|
||||||
system.defaults.finder.ShowPathbar = true;
|
|
||||||
|
|
||||||
# Other
|
# Other
|
||||||
system.startup.chime = false;
|
system.startup.chime = false;
|
||||||
@ -71,6 +75,7 @@
|
|||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
programs.fish.enable = true;
|
programs.fish.enable = true;
|
||||||
|
environment.shells = [ pkgs.fish ];
|
||||||
|
|
||||||
homebrew = {
|
homebrew = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user