nixdots/home/programs/xdg/default.nix

24 lines
651 B
Nix
Raw Normal View History

2024-04-04 21:41:41 +00:00
{config, pkgs, ...}: {
2024-04-04 21:17:11 +00:00
imports = [
./mime-apps.nix
./user-dirs.nix
];
xdg = {
enable = true;
cacheHome = "${config.home.homeDirectory}/.cache";
configHome = "${config.home.homeDirectory}/.config";
dataHome = "${config.home.homeDirectory}/.local/share";
stateHome = "${config.home.homeDirectory}/.local/state";
};
2024-04-04 21:28:59 +00:00
# Set XDG_RUNTIME_DIR manually (not supported via xdg configuration)
home.sessionVariables = {
"XDG_RUNTIME_DIR" = "/run/user/$UID";
};
2024-04-04 21:41:41 +00:00
# xdg-ninja is a CLI tool that checks $HOME for unwanted
# files/dirs and shows how to move them to XDG dirs
home.packages = [ pkgs.xdg-ninja ];
2024-04-04 21:17:11 +00:00
}