diff options
Diffstat (limited to 'modules/home.legacy/conf/xdg/xdg_vars.nix')
-rw-r--r-- | modules/home.legacy/conf/xdg/xdg_vars.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/home.legacy/conf/xdg/xdg_vars.nix b/modules/home.legacy/conf/xdg/xdg_vars.nix index 3f7d5e00..aa2f30d4 100644 --- a/modules/home.legacy/conf/xdg/xdg_vars.nix +++ b/modules/home.legacy/conf/xdg/xdg_vars.nix @@ -1,9 +1,12 @@ {config, ...}: let inherit (config.xdg) dataHome; in { + # FIXME: Move these options in relevant modules, that are connected to their software. + # <2024-10-21> + # Variables that only have to be set because special applications fail to set reasonable # defaults (mostly understandable because of backwards-compatibility, but yeah) - programs.zsh.sessionVariables = { + home.sessionVariables = { CARGO_HOME = "${dataHome}/cargo"; GRADLE_USER_HOME = "${dataHome}/gradle"; |