From d620b0a579c3da1bf46f18055b31699da3d1fe6b Mon Sep 17 00:00:00 2001 From: ChUrl Date: Sun, 24 Jul 2022 12:36:18 +0200 Subject: [PATCH] change python package, remove binutils --- home/modules/emacs.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/home/modules/emacs.nix b/home/modules/emacs.nix index c406594e..166a63c1 100644 --- a/home/modules/emacs.nix +++ b/home/modules/emacs.nix @@ -35,18 +35,15 @@ in { config = mkIf cfg.enable { # What home packages should be enabled home.packages = with pkgs; [ - # NOTE: I have problems with emacsPgtkNativeComp/emacsPgtk and also emacs28NativeComp GUI ((emacsPackagesFor emacsPgtkNativeComp).emacsWithPackages (epkgs: [ epkgs.vterm ])) - binutils + # binutils # conflicts with gcc zstd (ripgrep.override { withPCRE2 = true; }) fd # libgccjit sqlite - # TODO: I probably need python too - python310Packages.pygments inkscape graphviz gnuplot @@ -59,7 +56,11 @@ in { emacs-all-the-icons-fonts bashInteractive # For keychain - # TODO: Should I list lsps etc here or inside shell.nix for specific projects? + # Treemacs needs python + syntax coloring in org/latex needs pygments + (python310.withPackages (ppkgs: + [ + ppkgs.pygments + ])) # withPackages expects a function that gets all the packages as argument and returns a list with the packages we want ]; # Do this in packages