Add xdg settings

This commit is contained in:
ItsDrike 2024-04-04 23:17:11 +02:00
parent a89f7f7576
commit 3ada18683e
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 79 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{config, ...}: {
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";
};
}