mirror of
https://github.com/larstvei/nix-config.git
synced 2025-09-15 11:30:13 +00:00
49 lines
956 B
Nix
49 lines
956 B
Nix
{ pkgs, ... }:
|
|
{
|
|
|
|
imports = [
|
|
../fonts
|
|
../homebrew
|
|
];
|
|
|
|
nix.linux-builder.enable = true;
|
|
|
|
programs.fish.enable = true;
|
|
environment.shells = [ pkgs.fish ];
|
|
|
|
system = {
|
|
stateVersion = 4;
|
|
|
|
keyboard = {
|
|
enableKeyMapping = true;
|
|
remapCapsLockToControl = true;
|
|
};
|
|
defaults = {
|
|
screencapture = {
|
|
location = "/tmp";
|
|
};
|
|
dock = {
|
|
autohide = 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;
|
|
};
|
|
};
|
|
};
|
|
}
|