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