blob: 46448c94cbb241f11e4b4949f9ba2df99c2ad288 (
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 suweren-home-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))))
|