diff options
author | Andrew Tropin <andrew@trop.in> | 2022-06-10 10:08:24 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-10 22:42:49 +0200 |
commit | d859d8873ceb3c591210968cfd4c88e26fc89edc (patch) | |
tree | 54630211a616f2682ef1499d775066ed59d192ee /doc/he-config-bare-bones.scm | |
parent | 30967b0dc41742aac8e9ee965d2e21595c52c4dd (diff) | |
download | guix-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>
Diffstat (limited to 'doc/he-config-bare-bones.scm')
-rw-r--r-- | doc/he-config-bare-bones.scm | 11 |
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"))))))) |