mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
docs: add XDG_*_HOME mentions to xdg.*Home options
This commit is contained in:
parent
a9c9cc6e50
commit
edc428c00a
1 changed files with 8 additions and 0 deletions
|
@ -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`.
|
||||
'';
|
||||
};
|
||||
|
||||
|
@ -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`.
|
||||
'';
|
||||
};
|
||||
|
||||
|
@ -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`.
|
||||
'';
|
||||
};
|
||||
|
||||
|
@ -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`.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue