diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2017-10-20 23:04:42 +0200 |
|---|---|---|
| committer | Daiderd Jordan <daiderd@gmail.com> | 2017-10-20 23:04:42 +0200 |
| commit | 164220fe13f30561eb62f2d2bfc458aff60cfa5a (patch) | |
| tree | 50683a670b6f96bddd4577bfbb6ef6d7afcadbd8 /modules/examples | |
| parent | de97d16af19a4a797543ed8cc6e791cb89c088e4 (diff) | |
lnl: update
Diffstat (limited to 'modules/examples')
| -rw-r--r-- | modules/examples/lnl.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/examples/lnl.nix b/modules/examples/lnl.nix index e1cc2a0..ef64c43 100644 --- a/modules/examples/lnl.nix +++ b/modules/examples/lnl.nix @@ -22,10 +22,9 @@ system.defaults.finder.FXEnableExtensionChangeWarning = false; system.defaults.trackpad.Clicking = true; + system.defaults.trackpad.TrackpadThreeFingerDrag = true; services.nix-daemon.enable = true; - services.nix-daemon.tempDir = "/nix/var/tmp"; - nix.package = pkgs.nixUnstable; environment.systemPackages = @@ -46,8 +45,6 @@ pkgs.nixUnstable # pkgs.nix pkgs.nix-repl - - pkgs.emacsMacport ]; security.enableAccessibilityAccess = true; @@ -74,7 +71,6 @@ nix.trustedUsers = [ "@admin" ]; programs.nix-index.enable = true; - # programs.nix-script.enable = true; programs.tmux.enable = true; programs.tmux.enableSensible = true; @@ -286,6 +282,7 @@ environment.variables.SHELLCHECK_OPTS = "-e SC1008"; environment.shellAliases.g = "git log --pretty=color -32"; + environment.shellAliases.gb = "git branch"; environment.shellAliases.gc = "git checkout"; environment.shellAliases.gcb = "git checkout -B"; environment.shellAliases.gd = "git diff --minimal --patch"; @@ -601,4 +598,8 @@ kwmc rule owner="iTerm2" properties={role="AXDialog"} kwmc rule owner="iTunes" properties={float="true"} ''; + + # You should generally set this to the total number of logical cores in your system. + # $ sysctl -n hw.ncpu + nix.maxJobs = 1; } |
