Add wget xdg base dir alias

This commit is contained in:
ItsDrike 2024-04-13 00:28:35 +02:00
parent bd37750749
commit 3a5d27592e
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -87,4 +87,10 @@ in {
atexit.register(partial(write_history, readline, history_file))
'';
};
# Set the following aliases to force applications to use a config file
# in the proper XDG location
environment.shellAliases = {
wget = "wget --hsts-file='\${XDG_DATA_HOME}/wget-hsts'";
};
}