2021-09-01 04:47:04 -04:00
|
|
|
(use-modules (gnu home)
|
2021-10-09 09:51:25 -04:00
|
|
|
(gnu home services)
|
2021-10-04 19:09:41 -04:00
|
|
|
(gnu home services shells)
|
2021-09-01 04:47:04 -04:00
|
|
|
(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)
|
2022-06-10 03:08:24 -04:00
|
|
|
(bash-profile (list (plain-file "bash-profile" "\
|
|
|
|
export HISTFILE=$XDG_CACHE_HOME/.bash_history")))))
|
2021-09-01 04:47:04 -04:00
|
|
|
|
|
|
|
(simple-service 'test-config
|
2022-06-10 03:08:24 -04:00
|
|
|
home-xdg-configuration-files-service-type
|
|
|
|
(list `("test.conf"
|
2021-09-01 04:47:04 -04:00
|
|
|
,(plain-file "tmp-file.txt"
|
2022-06-10 03:08:24 -04:00
|
|
|
"the content of
|
|
|
|
~/.config/test.conf")))))))
|
2021-09-01 04:47:04 -04:00
|
|
|
|