mirror of
https://github.com/larstvei/nix-config.git
synced 2024-11-26 08:58:31 +00:00
Refactoring
This commit is contained in:
parent
baefeb6664
commit
c591c5b6a8
@ -27,34 +27,37 @@
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
networking.hostName = "macbookpro";
|
networking.hostName = "macbookpro";
|
||||||
system.stateVersion = 4;
|
|
||||||
|
|
||||||
system.keyboard = {
|
system = {
|
||||||
enableKeyMapping = true;
|
stateVersion = 4;
|
||||||
remapCapsLockToControl = true;
|
|
||||||
};
|
|
||||||
system.defaults = {
|
|
||||||
screencapture = { location = "/tmp"; };
|
|
||||||
dock = {
|
|
||||||
autohide = true;
|
|
||||||
showhidden = true;
|
|
||||||
mru-spaces = false;
|
|
||||||
};
|
|
||||||
finder = {
|
|
||||||
AppleShowAllExtensions = true;
|
|
||||||
QuitMenuItem = true;
|
|
||||||
FXEnableExtensionChangeWarning = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
NSGlobalDomain = {
|
keyboard = {
|
||||||
AppleKeyboardUIMode = 3;
|
enableKeyMapping = true;
|
||||||
ApplePressAndHoldEnabled = false;
|
remapCapsLockToControl = true;
|
||||||
AppleFontSmoothing = 1;
|
};
|
||||||
_HIHideMenuBar = true;
|
defaults = {
|
||||||
InitialKeyRepeat = 15;
|
screencapture = { location = "/tmp"; };
|
||||||
KeyRepeat = 1;
|
dock = {
|
||||||
"com.apple.mouse.tapBehavior" = 1;
|
autohide = true;
|
||||||
"com.apple.swipescrolldirection" = true;
|
showhidden = true;
|
||||||
|
mru-spaces = false;
|
||||||
|
};
|
||||||
|
finder = {
|
||||||
|
AppleShowAllExtensions = true;
|
||||||
|
QuitMenuItem = true;
|
||||||
|
FXEnableExtensionChangeWarning = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
NSGlobalDomain = {
|
||||||
|
AppleKeyboardUIMode = 3;
|
||||||
|
ApplePressAndHoldEnabled = false;
|
||||||
|
AppleFontSmoothing = 1;
|
||||||
|
_HIHideMenuBar = true;
|
||||||
|
InitialKeyRepeat = 15;
|
||||||
|
KeyRepeat = 1;
|
||||||
|
"com.apple.mouse.tapBehavior" = 1;
|
||||||
|
"com.apple.swipescrolldirection" = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user