2022-04-05 10:30:08 +02:00
|
|
|
(define-module (oni home services xsession)
|
|
|
|
#:use-module (gnu services configuration)
|
|
|
|
#:use-module (gnu home services)
|
|
|
|
#:use-module (gnu home services utils)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix gexp)
|
2022-04-14 10:39:25 +02:00
|
|
|
#:use-module (srfi srfi-1)
|
2022-04-05 10:30:08 +02:00
|
|
|
|
|
|
|
#:export (home-xsession-service-type
|
2022-04-14 10:39:25 +02:00
|
|
|
home-xsession-configuration
|
|
|
|
home-xsession-extension))
|
2022-04-05 10:30:08 +02:00
|
|
|
|
2022-04-14 10:39:25 +02:00
|
|
|
(define-configuration home-xsession-configuration
|
2022-04-05 10:30:08 +02:00
|
|
|
(configuration
|
|
|
|
(text-config '())
|
|
|
|
"Configuration"))
|
|
|
|
|
2022-04-14 10:39:25 +02:00
|
|
|
(define-configuration/no-serialization home-xsession-extension
|
|
|
|
(wm
|
|
|
|
(text-config '())
|
|
|
|
"String"))
|
|
|
|
|
|
|
|
(define* (mixed-executable-file name #:key guile #:rest text)
|
|
|
|
"Return an object representing store file NAME containing TEXT. TEXT is a
|
|
|
|
sequence of strings and file-like objects, as in:
|
|
|
|
|
|
|
|
(mixed-text-file \"profile\"
|
|
|
|
\"export PATH=\" coreutils \"/bin:\" grep \"/bin\")
|
|
|
|
|
|
|
|
This is the declarative counterpart of 'text-file*'."
|
|
|
|
(define build
|
|
|
|
(let ((text (if guile (drop text 2) text)))
|
|
|
|
(gexp (call-with-output-file (ungexp output "out")
|
|
|
|
(lambda (port)
|
|
|
|
(set-port-encoding! port "UTF-8")
|
|
|
|
(display (string-append (ungexp-splicing text)) port)
|
|
|
|
(chmod port #o555))))))
|
|
|
|
|
|
|
|
(computed-file name build #:guile guile))
|
|
|
|
|
2022-04-05 10:30:08 +02:00
|
|
|
(define (xsession-home-files config)
|
2022-04-14 10:39:25 +02:00
|
|
|
`((".xsession"
|
|
|
|
,(mixed-executable-file
|
2022-04-05 10:30:08 +02:00
|
|
|
"xsession"
|
2022-04-14 10:39:25 +02:00
|
|
|
(serialize-text-config 'configuration (home-xsession-configuration-configuration config))))))
|
|
|
|
|
|
|
|
(define (home-xsession-extensions original-config extension-configs)
|
|
|
|
(home-xsession-configuration
|
|
|
|
(inherit original-config)
|
|
|
|
(configuration
|
|
|
|
(append (home-xsession-configuration-configuration original-config)
|
|
|
|
(home-xsession-extension-wm (last extension-configs))))))
|
2022-04-05 10:30:08 +02:00
|
|
|
|
|
|
|
(define home-xsession-service-type
|
|
|
|
(service-type
|
|
|
|
(name 'home-xsession)
|
|
|
|
(extensions
|
|
|
|
(list (service-extension
|
|
|
|
home-files-service-type
|
|
|
|
xsession-home-files)))
|
|
|
|
(compose identity)
|
2022-04-14 10:39:25 +02:00
|
|
|
(extend home-xsession-extensions)
|
2022-04-05 10:30:08 +02:00
|
|
|
(default-value (home-xsession-configuration))
|
|
|
|
(description "Configure xsession.")))
|