diff options
Diffstat (limited to 'modules/emacs/emacs.nix')
-rw-r--r-- | modules/emacs/emacs.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/emacs/emacs.nix b/modules/emacs/emacs.nix index f86e364..a43e38b 100644 --- a/modules/emacs/emacs.nix +++ b/modules/emacs/emacs.nix @@ -1,14 +1,14 @@ { pkgs, inputs, ...}: let - outside-emacs = [ - (pkgs.python3.withPackages (p: (with p; [ + outside-emacs = with pkgs; [ + (python3.withPackages (p: (with p; [ python-lsp-server python-lsp-ruff pylsp-mypy ]))) - pkgs.nil - pkgs.rust-analyzer - pkgs.parallel + nil + rust-analyzer + parallel ]; org-tangle-elisp-blocks = (pkgs.callPackage ./org.nix {inherit pkgs; from-elisp = inputs.from-elisp;}).org-tangle ({ language, flags } : let is-elisp = (language == "emacs-lisp") || (language == "elisp"); |