2021-09-01 11:47:04 +03:00
|
|
|
(use-modules (gnu home)
|
2021-10-09 16:51:25 +03:00
|
|
|
(gnu home services)
|
2021-10-05 02:09:41 +03:00
|
|
|
(gnu home services shells)
|
2021-09-01 11:47:04 +03:00
|
|
|
(gnu services)
|
|
|
|
|
(gnu packages admin)
|
|
|
|
|
(guix gexp))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(home-environment
|
2024-12-13 23:37:03 +01:00
|
|
|
(packages (list htop))
|
|
|
|
|
(services
|
|
|
|
|
(append (list
|
|
|
|
|
(service home-bash-service-type
|
|
|
|
|
(home-bash-configuration
|
|
|
|
|
(guix-defaults? #t)
|
2025-09-30 11:08:13 +02:00
|
|
|
(variables
|
|
|
|
|
`(("HISTFILE" . "$XDG_CACHE_HOME/.bash_history")
|
|
|
|
|
("HISTSIZE" . "50000")))))
|
2021-09-01 11:47:04 +03:00
|
|
|
|
2024-12-13 23:37:03 +01:00
|
|
|
(simple-service 'test-config
|
|
|
|
|
home-xdg-configuration-files-service-type
|
|
|
|
|
(list `("test.conf"
|
|
|
|
|
,(plain-file "tmp-file.txt"
|
|
|
|
|
"the content of
|
|
|
|
|
~/.config/test.conf")))))
|
|
|
|
|
%base-home-services)))
|
2021-09-01 11:47:04 +03:00
|
|
|
|