diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/init.org | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index aa2ea28d..30046891 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -428,9 +428,15 @@ and some convenience commands for building packages and launching shells. :config (progn (with-eval-after-load 'flycheck (setq flycheck-command-wrapper-function - (lambda (command) (apply 'nix-shell-command (nix-current-sandbox) command)) + (lambda (command) + (if (nix-current-sandbox) + (apply 'nix-shell-command (nix-current-sandbox) command) + command)) flycheck-executable-find - (lambda (cmd) (nix-executable-find (nix-current-sandbox) cmd)))))) + (lambda (cmd) + (if (nix-current-sandbox) + (nix-executable-find (nix-current-sandbox) cmd) + (executable-find cmd))))))) #+END_SRC * Keybindings |