From 0a608bd781dcda40144097b007fac0a0c60a8ee1 Mon Sep 17 00:00:00 2001 From: Soispha Date: Tue, 1 Aug 2023 15:31:42 +0200 Subject: Refactor(treewide): Move module configuration in separate files --- home-manager/soispha/config/python/default.nix | 7 +++++++ home-manager/soispha/config/python/pythonrc | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 home-manager/soispha/config/python/default.nix create mode 100644 home-manager/soispha/config/python/pythonrc (limited to 'home-manager/soispha/config/python') diff --git a/home-manager/soispha/config/python/default.nix b/home-manager/soispha/config/python/default.nix new file mode 100644 index 00000000..eeaccdcf --- /dev/null +++ b/home-manager/soispha/config/python/default.nix @@ -0,0 +1,7 @@ +{ + config, + pkgs, + ... +}: { + xdg.configFile."python/pythonrc".source = ./pythonrc; +} diff --git a/home-manager/soispha/config/python/pythonrc b/home-manager/soispha/config/python/pythonrc new file mode 100644 index 00000000..38c48e0f --- /dev/null +++ b/home-manager/soispha/config/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) -- cgit 1.4.1