guix-home/home-config.scm

25 lines
915 B
Scheme
Raw Normal View History

2025-04-21 20:57:25 +02:00
(use-modules (gnu)
(gnu home)
(gnu home services shells)
(gnu home services mcron))
(home-environment
(packages (specifications->packages
(list
"git"
"glibc-locales"
;"tealdeer"
)))
(services (list (service home-bash-service-type
(home-bash-configuration
(aliases '(("gs" . "git status")))
(environment-variables
'(("GIT_CONFIG_SYSTEM" . "/etc/gitconfig")))))
(simple-service 'tldr-update home-mcron-service-type
;(home-mcron-configuration
;; Update tldr every day at 12 o'clock
(list #~(job '(next-hour '(12)) "tldr --update")))
)))