Skip to content

Commit

Permalink
docs: add XDG_*_HOME mentions to xdg.*Home options
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew15-5 authored and colonelpanic8 committed Dec 30, 2024
1 parent e6132d5 commit d4ff261
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/misc/xdg.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ in {
apply = toString;
description = ''
Absolute path to directory holding application caches.
Sets `XDG_CACHE_HOME` for the user if `xdg.enable` is set `true`.
'';
};

Expand All @@ -48,6 +50,8 @@ in {
apply = toString;
description = ''
Absolute path to directory holding application configurations.
Sets `XDG_CONFIG_HOME` for the user if `xdg.enable` is set `true`.
'';
};

Expand All @@ -67,6 +71,8 @@ in {
apply = toString;
description = ''
Absolute path to directory holding application data.
Sets `XDG_DATA_HOME` for the user if `xdg.enable` is set `true`.
'';
};

Expand All @@ -86,6 +92,8 @@ in {
apply = toString;
description = ''
Absolute path to directory holding application states.
Sets `XDG_STATE_HOME` for the user if `xdg.enable` is set `true`.
'';
};
};
Expand Down

0 comments on commit d4ff261

Please sign in to comment.