config/homes/common/xdg.nix

19 lines
470 B
Nix
Raw Normal View History

2024-09-15 12:56:25 +01:00
{ config, ... }:
{
home = {
sessionVariables = {
CUDA_CACHE_PATH = "${config.xdg.cacheHome}/nv";
LESSHISTFILE = "${config.xdg.configHome}/less/history";
LESSKEY = "${config.xdg.configHome}/less/keys";
WINEPREFIX = "${config.xdg.dataHome}/wine";
_JAVA_OPTIONS = "-Djava.util.prefs.userRoot=${config.xdg.configHome}/java";
};
2024-09-15 12:56:25 +01:00
shellAliases = {
wget = "wget --hsts-file='${config.xdg.dataHome}/wget-hsts'";
};
};
}