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; }