From b5d2fa60722347f87bb25a1aa83c9d11ceacfd12 Mon Sep 17 00:00:00 2001 From: Leonardo Santiago Date: Tue, 2 Apr 2024 16:42:12 -0300 Subject: fix some stuff --- modules/emacs/emacs.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'modules/emacs/emacs.nix') 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"); -- cgit v1.2.3