about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-12 17:44:45 +0100
committerene <ene@sils.li>2023-02-12 17:48:18 +0100
commit8a54a149bb9fbb0f655df6f34e7b016dddfe6746 (patch)
treec6f3fef82c9daa8c9def9df3b48e53e149cdadb3
parentFix(home-manager): Improve Firefox configuration (diff)
downloadnixos-config-8a54a149bb9fbb0f655df6f34e7b016dddfe6746.tar.gz
nixos-config-8a54a149bb9fbb0f655df6f34e7b016dddfe6746.zip
Feat(home-manager): Add python xdg-settings
-rw-r--r--home-manager/python/default.nix9
-rw-r--r--home-manager/python/pythonrc11
2 files changed, 20 insertions, 0 deletions
diff --git a/home-manager/python/default.nix b/home-manager/python/default.nix
new file mode 100644
index 00000000..4fd01a0a
--- /dev/null
+++ b/home-manager/python/default.nix
@@ -0,0 +1,9 @@
+{
+  config,
+  pkgs,
+  ...
+}: {
+  xdg.configFile."python/pythonrc".source = ./pythonrc;
+}
+# vim: ts=2
+
diff --git a/home-manager/python/pythonrc b/home-manager/python/pythonrc
new file mode 100644
index 00000000..38c48e0f
--- /dev/null
+++ b/home-manager/python/pythonrc
@@ -0,0 +1,11 @@
+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)