From 9d5a7994ebf75800767c01592448f71f85352bb9 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Mon, 20 Oct 2025 16:40:52 +0100 Subject: [PATCH] Don't install python env on servers. --- home/profiles/server.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/home/profiles/server.nix b/home/profiles/server.nix index 79c0774..785d15e 100644 --- a/home/profiles/server.nix +++ b/home/profiles/server.nix @@ -10,11 +10,6 @@ let zsh ]; - pythonEnv = pkgs.unstable.python3.withPackages (ps: [ - ps.google-generativeai - ps.ipython - ]); - fishPkgs = with pkgs.fishPlugins; [ pure # don't add failed commands to history @@ -23,5 +18,5 @@ let ]; in { - packages = corePkgs ++ [ pythonEnv ] ++ fishPkgs; + packages = corePkgs ++ fishPkgs; }