doc: Refer to the pt_BR translation.
[jackhill/guix/guix.git] / doc / he-config-bare-bones.scm
CommitLineData
aaffa43c 1(use-modules (gnu home)
0e8d2df0 2 (gnu home services)
ba8ddb34 3 (gnu home services shells)
aaffa43c
AT
4 (gnu services)
5 (gnu packages admin)
6 (guix gexp))
7
8
9(home-environment
10 (packages (list htop))
11 (services
12 (list
13 (service home-bash-service-type
14 (home-bash-configuration
15 (guix-defaults? #t)
d859d887
AT
16 (bash-profile (list (plain-file "bash-profile" "\
17export HISTFILE=$XDG_CACHE_HOME/.bash_history")))))
aaffa43c
AT
18
19 (simple-service 'test-config
d859d887
AT
20 home-xdg-configuration-files-service-type
21 (list `("test.conf"
aaffa43c 22 ,(plain-file "tmp-file.txt"
d859d887
AT
23 "the content of
24 ~/.config/test.conf")))))))
aaffa43c 25