diff options
author | Soispha <soispha@vhack.eu> | 2023-10-08 11:05:33 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-08 11:05:33 +0200 |
commit | 170d9607d0171045312504b458df8b990a12f63c (patch) | |
tree | c9aa4644632874ba0d29ea998115f056695bc5df | |
parent | build(flake): Update (diff) | |
download | nixos-config-170d9607d0171045312504b458df8b990a12f63c.tar.gz nixos-config-170d9607d0171045312504b458df8b990a12f63c.zip |
fix(hm/conf/python): Set the sessionVariables in zsh context
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/python/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/python/default.nix b/hm/soispha/conf/python/default.nix index 93a530c7..74a2e4c0 100644 --- a/hm/soispha/conf/python/default.nix +++ b/hm/soispha/conf/python/default.nix @@ -1,6 +1,6 @@ {config, ...}: { xdg.configFile."python/pythonrc".source = ./pythonrc; - environment.sessionVariables = { + programs.zsh.sessionVariables = { "PYTHONSTARTUP" = "${config.xdg.configHome}/python/pythonrc"; }; } |