From: Peng Mei Yu <pengmeiyu@riseup.net>
To: 41704@debbugs.gnu.org
Cc: Peng Mei Yu <pengmeiyu@riseup.net>
Subject: [bug#41704] [PATCH] services: nix: Set NIX_CONF_DIR environment variable.
Date: Thu, 4 Jun 2020 15:01:03 +0800 [thread overview]
Message-ID: <20200604070103.2548-1-pengmeiyu@riseup.net> (raw)
* gnu/services/nix.scm (nix-shepherd-service): Set NIX_CONF_DIR environment
variable to "/etc/nix".
---
gnu/services/nix.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/services/nix.scm b/gnu/services/nix.scm
index dfe33991d0..2cdddd8866 100644
--- a/gnu/services/nix.scm
+++ b/gnu/services/nix.scm
@@ -96,7 +96,9 @@ GID."
(documentation "Run nix-daemon.")
(requirement '())
(start #~(make-forkexec-constructor
- (list (string-append #$nix "/bin/nix-daemon"))))
+ (list (string-append #$nix "/bin/nix-daemon"))
+ #:environment-variables
+ '("NIX_CONF_DIR=/etc/nix")))
(respawn? #f)
(stop #~(make-kill-destructor)))))
--
2.26.2
next reply other threads:[~2020-06-04 8:36 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-04 7:01 Peng Mei Yu [this message]
2020-06-04 9:09 ` [bug#41704] [PATCH V2] services: nix: Set NIX_CONF_DIR environment variable Peng Mei Yu
2020-06-09 7:52 ` Ludovic Courtès
2020-06-14 8:10 ` Peng Mei Yu
2020-06-15 11:08 ` Tobias Geerinckx-Rice via Guix-patches via
2020-06-16 10:58 ` bug#41704: " Peng Mei Yu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200604070103.2548-1-pengmeiyu@riseup.net \
--to=pengmeiyu@riseup.net \
--cc=41704@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.