about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--home/python/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/python/default.nix b/home/python/default.nix
index fa5e0d8..32a2129 100644
--- a/home/python/default.nix
+++ b/home/python/default.nix
@@ -17,13 +17,13 @@ in
   };
 
   config = lib.mkIf cfg.enable {
-    home.packages = with pkgs.python310Packages; [ pythonEnv ];
+    home.packages = with pkgs.python3Packages; [ pythonEnv ];
 
     home.sessionVariables = with config.xdg; {
+      IPYTHONDIR = "${cacheHome}/ipython";
       PIP_LOG = "${cacheHome}/pip/pip.log";
       PYLINTHOME = "${cacheHome}/pylint";
       PYTHON_EGG_CACHE = "${cacheHome}/python-eggs";
-      PYTHON_HISTFILE = "${cacheHome}/python_history";
     };
   };
 }