mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-08-30 23:07:12 +02:00
11 lines
288 B
Nix
11 lines
288 B
Nix
{ config, ... }:
|
|
{
|
|
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";
|
|
};
|
|
}
|