about summary refs log tree commit diff stats
path: root/hm/soispha/conf/python/default.nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-08 10:47:48 +0200
committerSoispha <soispha@vhack.eu>2023-10-08 10:47:48 +0200
commit956f0296410b3e93ef29555c353f3ed48d0dd622 (patch)
tree8a805b55ba17ed1960b068ea4e0478f8f72bc5c1 /hm/soispha/conf/python/default.nix
parentfix(hm/conf/taskserver): Update to new let's encrypt certificate (diff)
downloadnixos-config-956f0296410b3e93ef29555c353f3ed48d0dd622.zip
fix(hm/conf/python): Move python history file to a persistent location
Diffstat (limited to 'hm/soispha/conf/python/default.nix')
-rw-r--r--hm/soispha/conf/python/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/hm/soispha/conf/python/default.nix b/hm/soispha/conf/python/default.nix
index eeaccdcf..93a530c7 100644
--- a/hm/soispha/conf/python/default.nix
+++ b/hm/soispha/conf/python/default.nix
@@ -1,7 +1,6 @@
-{
-  config,
-  pkgs,
-  ...
-}: {
+{config, ...}: {
   xdg.configFile."python/pythonrc".source = ./pythonrc;
+  environment.sessionVariables = {
+    "PYTHONSTARTUP" = "${config.xdg.configHome}/python/pythonrc";
+  };
 }