home: xdg: force XDG compliance for some packages
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bruno BELANYI 2021-03-07 17:01:19 +00:00
parent aa0a3bf6c9
commit 82f223c77e

View file

@ -1,4 +1,4 @@
{ ... }:
{ config, ... }:
{
xdg = {
enable = true;
@ -22,4 +22,11 @@
videos = "\$HOME/videos";
};
};
# I want a tidier home
home.sessionVariables = with config.xdg; {
HISTFILE = "${dataHome}/bash/history";
LESSHISTFILE = "${dataHome}/less/history";
LESSKEY = "${configHome}/less/lesskey";
};
}