mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-01 08:39:54 +03:00
age-home: Use curly-brackets for XDG_RUNTIME_DIR
To avoid having to do 4fd99eae63/nixos/secrets.nix (L25C9-L29C116)
while using agenix in user services.
This commit is contained in:
parent
3f1dae074a
commit
e3413992fb
1 changed files with 2 additions and 2 deletions
|
@ -146,12 +146,12 @@ with lib; let
|
||||||
baseDir =
|
baseDir =
|
||||||
if isDarwin
|
if isDarwin
|
||||||
then "$(getconf DARWIN_USER_TEMP_DIR)"
|
then "$(getconf DARWIN_USER_TEMP_DIR)"
|
||||||
else "$XDG_RUNTIME_DIR";
|
else "\${XDG_RUNTIME_DIR}";
|
||||||
in "${baseDir}/${dir}";
|
in "${baseDir}/${dir}";
|
||||||
|
|
||||||
userDirectoryDescription = dir:
|
userDirectoryDescription = dir:
|
||||||
literalExpression ''
|
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 {
|
in {
|
||||||
options.age = {
|
options.age = {
|
||||||
|
|
Loading…
Reference in a new issue