diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2021-09-27 17:27:12 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2021-09-27 17:27:12 +0300 |
commit | 6ae4644984608b7eff7ab54d3a5787c661d85b2e (patch) | |
tree | 170f992d865b7f511d820a725754bc00e42b0451 /doc/he-config-bare-bones.scm | |
parent | 86d316b3346eac29c7e466f66b4422067c1cdb96 (diff) | |
parent | a2b937984a502f7129f3b84f631be92dde689022 (diff) | |
download | guix-6ae4644984608b7eff7ab54d3a5787c661d85b2e.tar.gz |
Merge branch 'wip-guix-home'
Diffstat (limited to 'doc/he-config-bare-bones.scm')
-rw-r--r-- | doc/he-config-bare-bones.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/he-config-bare-bones.scm b/doc/he-config-bare-bones.scm new file mode 100644 index 0000000000..01be46a7b0 --- /dev/null +++ b/doc/he-config-bare-bones.scm @@ -0,0 +1,24 @@ +(use-modules (gnu home) + (gnu home-services) + (gnu home-services shells) + (gnu services) + (gnu packages admin) + (guix gexp)) + + +(home-environment + (packages (list htop)) + (services + (list + (service home-bash-service-type + (home-bash-configuration + (guix-defaults? #t) + (bash-profile '("\ +export HISTFILE=$XDG_CACHE_HOME/.bash_history")))) + + (simple-service 'test-config + home-files-service-type + (list `("config/test.conf" + ,(plain-file "tmp-file.txt" + "the content of ~/.config/test.conf"))))))) + |