mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
home: services: Add home-startx-command-service-type.
* gnu/home/services/desktop.scm (home-startx-command-service-type): New variable. (startx-command-service-type): New service-type mapping. * doc/guix.texi (Guix Home Services): Document home-startx-command-service-type. Change-Id: Id38b5dc7b9235e04e3a9a1b70a35b02e8fae95f0 Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
parent
e51a930c5c
commit
8144c587f8
2 changed files with 25 additions and 4 deletions
|
@ -23,6 +23,7 @@
|
|||
#:use-module (gnu home services)
|
||||
#:use-module (gnu home services shepherd)
|
||||
#:use-module (gnu services configuration)
|
||||
#:use-module (gnu services xorg)
|
||||
#:autoload (gnu packages glib) (dbus)
|
||||
#:autoload (gnu packages xdisorg) (redshift unclutter)
|
||||
#:autoload (gnu packages xorg) (setxkbmap xmodmap)
|
||||
|
@ -43,7 +44,9 @@
|
|||
home-unclutter-service-type
|
||||
|
||||
home-xmodmap-configuration
|
||||
home-xmodmap-service-type))
|
||||
home-xmodmap-service-type
|
||||
|
||||
home-startx-command-service-type))
|
||||
|
||||
|
||||
;;;
|
||||
|
@ -429,3 +432,12 @@ defaults."))))
|
|||
(default-value (home-xmodmap-configuration))
|
||||
(description "Run the @code{xmodmap} utility to modify keymaps and pointer
|
||||
buttons under the Xorg display server via user-defined expressions.")))
|
||||
|
||||
|
||||
(define home-startx-command-service-type
|
||||
(service-type
|
||||
(inherit (system->home-service-type startx-command-service-type))
|
||||
(default-value (for-home (xorg-configuration)))))
|
||||
|
||||
(define-service-type-mapping
|
||||
startx-command-service-type => home-startx-command-service-type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue