diff options
author | Efraim Flashner <[email protected]> | 2022-12-29 09:15:42 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2022-12-30 15:17:44 +0200 |
commit | ff092b94540e56c32db0487ee19ad3f788a295f0 (patch) | |
tree | 39b25efd0fe3d99e85d2856dcfaf4635764250eb | |
parent | 01762b7171f9afaf7ffa364f7926461bdebc903f (diff) |
services: enlightenment: Load ddcutil udev rules.
* gnu/services/desktop.scm (enlightenment-desktop-service-type): Extend
the enlightenment-desktop-service-type with the udev rules from the
ddcutil input in the udev-service-type.
-rw-r--r-- | gnu/services/desktop.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 9fd77642a1..fe1f0fd20a 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2016 Sou Bunnbu <[email protected]> ;;; Copyright © 2017, 2020, 2022 Maxim Cournoyer <[email protected]> ;;; Copyright © 2017 Nikita <[email protected]> -;;; Copyright © 2018, 2020 Efraim Flashner <[email protected]> +;;; Copyright © 2018, 2020, 2022 Efraim Flashner <[email protected]> ;;; Copyright © 2018 Ricardo Wurmus <[email protected]> ;;; Copyright © 2017, 2019 Christopher Baines <[email protected]> ;;; Copyright © 2019 Tim Gesthuizen <[email protected]> @@ -760,7 +760,7 @@ site} for more information." (bluetooth-configuration-enable-adv-mon-interleave-scan config)) 1 0)) - + "\n[GATT]" "\nCache = " (symbol->string (bluetooth-configuration-cache config)) "\nKeySize = " (number->string (bluetooth-configuration-key-size config)) @@ -1541,6 +1541,11 @@ rules." (package-direct-input-selector "efl") enlightenment-package)) + (service-extension udev-service-type + (compose list + (package-direct-input-selector + "ddcutil") + enlightenment-package)) (service-extension setuid-program-service-type enlightenment-setuid-programs) (service-extension profile-service-type |