10 lines
253 B
Nix
10 lines
253 B
Nix
|
{config, ...}: {
|
||
|
xdg = {
|
||
|
enable = true;
|
||
|
userDirs.enable = true;
|
||
|
cacheHome = "${config.home.homeDirectory}/.cache";
|
||
|
configHome = "${config.home.homeDirectory}/.config";
|
||
|
dataHome = "${config.home.homeDirectory}/.local/share";
|
||
|
};
|
||
|
}
|