From 7dd0f52816677edce45737a3c8a49a254dedbd57 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 29 Jul 2024 11:29:37 +0100 Subject: [PATCH] Revert using python3Full, back to custom python install Also revert similar lua change Add poetry as installed development tool by default --- home/emacs/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/home/emacs/default.nix b/home/emacs/default.nix index d866b88c..859d0a2d 100644 --- a/home/emacs/default.nix +++ b/home/emacs/default.nix @@ -74,6 +74,8 @@ # Development tools ## Code screenshots silicon + ## Python Environments + poetry ## Linters shellcheck @@ -96,8 +98,10 @@ nodePackages.typescript-language-server ## Interpreters - lua - python3Full + (python3.withPackages + (ps: with ps; [tkinter numpy scipy xarray matplotlib])) + (luajit.withPackages + (ps: [(ps.callPackage ./luarocks/scilua.nix {})])) ]; xdg.configFile = { "ruff/pyproject.toml".source = ./ruff.toml;