summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tropin <andrew@trop.in>2022-06-10 10:08:24 +0300
committerLudovic Courtès <ludo@gnu.org>2022-06-10 22:42:49 +0200
commitd859d8873ceb3c591210968cfd4c88e26fc89edc (patch)
tree54630211a616f2682ef1499d775066ed59d192ee
parent30967b0dc41742aac8e9ee965d2e21595c52c4dd (diff)
downloadguix-patches-d859d8873ceb3c591210968cfd4c88e26fc89edc.tar
guix-patches-d859d8873ceb3c591210968cfd4c88e26fc89edc.tar.gz
doc: Update example of a minimalistic home environment.
* doc/he-config-bare-bones.scm: Adujst example according to changes in bash-service-type and home-files-service-type. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--doc/he-config-bare-bones.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/he-config-bare-bones.scm b/doc/he-config-bare-bones.scm
index d2e4736e29..f948d85277 100644
--- a/doc/he-config-bare-bones.scm
+++ b/doc/he-config-bare-bones.scm
@@ -13,12 +13,13 @@
(service home-bash-service-type
(home-bash-configuration
(guix-defaults? #t)
- (bash-profile '("\
-export HISTFILE=$XDG_CACHE_HOME/.bash_history"))))
+ (bash-profile (list (plain-file "bash-profile" "\
+export HISTFILE=$XDG_CACHE_HOME/.bash_history")))))
(simple-service 'test-config
- home-files-service-type
- (list `("config/test.conf"
+ home-xdg-configuration-files-service-type
+ (list `("test.conf"
,(plain-file "tmp-file.txt"
- "the content of ~/.config/test.conf")))))))
+ "the content of
+ ~/.config/test.conf")))))))