blob: b765820416ceac08dd3bb71bf7057ef593f0131c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(define-module (suweren home services)
#:use-module (gnu home services shells)
#:use-module (guix gexp))
(define-public bash-configuration
(let ((bashrc (list (local-file "bashrc"
"bashrc")))
(bash-profile (list (local-file "bash-profile"
"bash-profile"))))
(home-bash-configuration (bashrc bashrc)
(bash-profile bash-profile))))
|