nix-config/home/xdg.nix

38 lines
871 B
Nix
Raw Normal View History

{ config, ... }:
2021-02-21 20:30:21 +01:00
{
xdg = {
enable = true;
# File types
mime.enable = true;
# File associatons
mimeApps = {
enable = true;
};
2021-02-21 20:32:54 +01:00
# User directories
userDirs = {
enable = true;
# I want them lowercased
desktop = "\$HOME/desktop";
documents = "\$HOME/documents";
download = "\$HOME/downloads";
music = "\$HOME/music";
pictures = "\$HOME/pictures";
publicShare = "\$HOME/public";
templates = "\$HOME/templates";
videos = "\$HOME/videos";
};
# A tidy home is a tidy mind
dataFile = {
"bash/.keep".text = "";
"tig/.keep".text = "";
};
2021-02-21 20:30:21 +01:00
};
# I want a tidier home
home.sessionVariables = with config.xdg; {
HISTFILE = "${dataHome}/bash/history";
LESSHISTFILE = "${dataHome}/less/history";
LESSKEY = "${configHome}/less/lesskey";
};
2021-02-21 20:30:21 +01:00
}