blob: db2e0df9360b6191ff71fa9bc471fbfeef95f2c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
(define-module (suweren home services)
#:use-module (gnu home services)
#:use-module (gnu home services shells)
#:use-module (gnu services)
#: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))))
(define-public suweren-home-xdg-configuration-files-extension
(let* ((emacs-init-file (local-file "emacs-configuration.el"))
(emacs-init (list "emacs/init.el" emacs-init-file))
(value (list emacs-init)))
(simple-service 'suweren-home-xdg-configuration-files
home-xdg-configuration-files-service-type
value)))
|