initial(ish) commit
This commit is contained in:
commit
b744693f0e
88 changed files with 4925 additions and 0 deletions
25
darwin-common.nix
Normal file
25
darwin-common.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{config, pkgs, ...}: {
|
||||
programs.gnupg.agent.enable = true;
|
||||
services.nix-daemon.enable = true;
|
||||
nix.package = pkgs.nixFlakes;
|
||||
nix.buildCores = 0; # use all cores
|
||||
nix.maxJobs = 10; # use all cores
|
||||
|
||||
system.defaults = {
|
||||
NSGlobalDomain.AppleShowAllExtensions = true;
|
||||
NSGlobalDomain.InitialKeyRepeat = 25;
|
||||
NSGlobalDomain.KeyRepeat = 4;
|
||||
NSGlobalDomain.NSNavPanelExpandedStateForSaveMode = true;
|
||||
NSGlobalDomain.PMPrintingExpandedStateForPrint = true;
|
||||
NSGlobalDomain."com.apple.mouse.tapBehavior" = 1;
|
||||
NSGlobalDomain."com.apple.trackpad.trackpadCornerClickBehavior" = 1;
|
||||
dock.autohide = true;
|
||||
dock.mru-spaces = false;
|
||||
dock.show-recents = false;
|
||||
dock.static-only = true;
|
||||
finder.AppleShowAllExtensions = true;
|
||||
finder.FXEnableExtensionChangeWarning = false;
|
||||
loginwindow.GuestEnabled = false;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue