From eb9e6c0e9510ff5102f359cbfc9a1e5a4de5c7c1 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 27 Nov 2024 13:12:23 +0000 Subject: [PATCH] Remove poetry and lua from default installed programs --- system/home/emacs/default.nix | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/system/home/emacs/default.nix b/system/home/emacs/default.nix index 98d4529f..0be71400 100644 --- a/system/home/emacs/default.nix +++ b/system/home/emacs/default.nix @@ -56,13 +56,6 @@ latex-beamer-ukaea.pkgs = [ (callPackage ./texlive/latex-beamer-ukaea/default.nix { }) ]; }) - # Development tools - ## Code screenshots - silicon - - ## Python Environments - poetry - ## Linters shellcheck yamllint @@ -77,7 +70,6 @@ ## Language servers nixd - lua-language-server ## Interpreters (python3.withPackages ( @@ -93,10 +85,6 @@ matplotlib ] )) - (luajit.withPackages (ps: [ (ps.callPackage ./luarocks/scilua.nix { }) ])) ]; - xdg.configFile = { - "ruff/pyproject.toml".source = ./ruff.toml; - "pypoetry/config.toml".source = ./pypoetry.toml; - }; + xdg.configFile."ruff/pyproject.toml".source = ./ruff.toml; }