about summary refs log tree commit diff stats
path: root/home-manager/config/python
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/config/python')
-rw-r--r--home-manager/config/python/default.nix7
-rw-r--r--home-manager/config/python/pythonrc11
2 files changed, 0 insertions, 18 deletions
diff --git a/home-manager/config/python/default.nix b/home-manager/config/python/default.nix
deleted file mode 100644
index eeaccdcf..00000000
--- a/home-manager/config/python/default.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  config,
-  pkgs,
-  ...
-}: {
-  xdg.configFile."python/pythonrc".source = ./pythonrc;
-}
diff --git a/home-manager/config/python/pythonrc b/home-manager/config/python/pythonrc
deleted file mode 100644
index 38c48e0f..00000000
--- a/home-manager/config/python/pythonrc
+++ /dev/null
@@ -1,11 +0,0 @@
-import os
-import atexit
-import readline
-
-history = os.path.join(os.environ['XDG_CACHE_HOME'], 'python_history')
-readline.read_history_file(history)
-
-def write_history():
-    readline.write_history_file(history)
-
-atexit.register(write_history)