19 lines
470 B
Nix
19 lines
470 B
Nix
{ 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";
|
|
};
|
|
|
|
|
|
shellAliases = {
|
|
wget = "wget --hsts-file='${config.xdg.dataHome}/wget-hsts'";
|
|
};
|
|
};
|
|
}
|