summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2016-12-14 15:07:27 +0100
committerDaiderd Jordan <daiderd@gmail.com>2016-12-14 15:07:27 +0100
commitbcdd968833fcaa3d22a878b2387037de0e7b4c5d (patch)
tree844227c8a1e4f17bdad75ad8f32659f73d59155b /modules/examples
parente6e79e53ccd927641086fddce83796ad4c079743 (diff)
lnl: add defaults options
Diffstat (limited to 'modules/examples')
-rw-r--r--modules/examples/lnl.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/examples/lnl.nix b/modules/examples/lnl.nix
index d04407a..233f830 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";