From bcdd968833fcaa3d22a878b2387037de0e7b4c5d Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 14 Dec 2016 15:07:27 +0100 Subject: [PATCH] lnl: add defaults options --- modules/examples/lnl.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/examples/lnl.nix b/modules/examples/lnl.nix index d04407af..233f8308 100644 --- a/modules/examples/lnl.nix +++ b/modules/examples/lnl.nix @@ -20,8 +20,15 @@ services.activate-system.enable = true; + system.defaults.NSGlobalDomain.AppleKeyboardUIMode = 3; + system.defaults.NSGlobalDomain.ApplePressAndHoldEnabled = false; system.defaults.NSGlobalDomain.InitialKeyRepeat = 10; system.defaults.NSGlobalDomain.KeyRepeat = 1; + system.defaults.NSGlobalDomain.NSAutomaticDashSubstitutionEnabled = false; + system.defaults.NSGlobalDomain.NSAutomaticQuoteSubstitutionEnabled = false; + system.defaults.NSGlobalDomain.NSAutomaticSpellingCorrectionEnabled = false; + system.defaults.NSGlobalDomain.NSNavPanelExpandedStateForSaveMode = true; + system.defaults.NSGlobalDomain.NSNavPanelExpandedStateForSaveMode2 = true; programs.tmux.enable = true; programs.tmux.loginShell = "${config.programs.zsh.shell} -l";