mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-01 00:29:56 +03:00
Merge pull request #280 from Kreyren/patch-3
age-home: Use curly-brackets for XDG_RUNTIME_DIR
This commit is contained in:
commit
f6291c5935
1 changed files with 2 additions and 2 deletions
|
@ -146,12 +146,12 @@ with lib; let
|
|||
baseDir =
|
||||
if isDarwin
|
||||
then "$(getconf DARWIN_USER_TEMP_DIR)"
|
||||
else "$XDG_RUNTIME_DIR";
|
||||
else "\${XDG_RUNTIME_DIR}";
|
||||
in "${baseDir}/${dir}";
|
||||
|
||||
userDirectoryDescription = dir:
|
||||
literalExpression ''
|
||||
"$XDG_RUNTIME_DIR"/${dir} on linux or "$(getconf DARWIN_USER_TEMP_DIR)"/${dir} on darwin.
|
||||
"${XDG_RUNTIME_DIR}"/${dir} on linux or "$(getconf DARWIN_USER_TEMP_DIR)"/${dir} on darwin.
|
||||
'';
|
||||
in {
|
||||
options.age = {
|
||||
|
|
Loading…
Reference in a new issue