doc: Explain Emacs native-compilation.
[jackhill/guix/guix.git] / doc / he-config-bare-bones.scm
1 (use-modules (gnu home)
2 (gnu home services)
3 (gnu home services shells)
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)
16 (bash-profile (list (plain-file "bash-profile" "\
17 export HISTFILE=$XDG_CACHE_HOME/.bash_history")))))
18
19 (simple-service 'test-config
20 home-xdg-configuration-files-service-type
21 (list `("test.conf"
22 ,(plain-file "tmp-file.txt"
23 "the content of
24 ~/.config/test.conf")))))))
25