diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-11 10:11:19 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-03-11 23:25:53 +0100 |
commit | 84399103da1b94d9557b543df66da7cf9c183875 (patch) | |
tree | 47e1d46538d71b4221902cdb780c045f34287cf2 /doc | |
parent | 5933549dbd8c9c7857805bf457e4d80fcbe113e9 (diff) | |
download | guix-84399103da1b94d9557b543df66da7cf9c183875.tar guix-84399103da1b94d9557b543df66da7cf9c183875.tar.gz |
doc: Suggest to use 'lsh-service' with #:initialize? #t.
Suggested by Tomáš Čech.
* doc/guix.texi (Using the Configuration System): Pass #:initialize? #t
to 'lsh-service'.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index bd8091ae51..b605c5b192 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -3730,7 +3730,8 @@ kernel, initial RAM disk, and boot loader looks like this: (comment "Bob's sister") (home-directory "/home/alice")))) (packages (cons emacs %base-packages)) - (services (cons (lsh-service #:port 2222 #:root-login? #t) + (services (cons (lsh-service #:port 2222 #:root-login? #t + #:initialize? #t) %base-services))) @end lisp |