summaryrefslogtreecommitdiff
path: root/gnu/services/pm.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-08-26 10:02:50 +0200
committerLudovic Courtès <ludo@gnu.org>2019-08-26 13:40:45 +0200
commit94b98ef7a089d7a5720a9af2369dc994eb7ffe9d (patch)
tree777010c7bf2039d27782bf9e7c5322aa479b3b24 /gnu/services/pm.scm
parent36ac9520849043cb63076c934cd33692f98601b2 (diff)
downloadguix-patches-94b98ef7a089d7a5720a9af2369dc994eb7ffe9d.tar
guix-patches-94b98ef7a089d7a5720a9af2369dc994eb7ffe9d.tar.gz
services: tlp, thermald: Add descriptions.
* gnu/services/pm.scm (tlp-service-type)[description]: New field. (thermald-service-type)[description]: New field.
Diffstat (limited to 'gnu/services/pm.scm')
-rw-r--r--gnu/services/pm.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/services/pm.scm b/gnu/services/pm.scm
index 3817bd09de..1e01b5059d 100644
--- a/gnu/services/pm.scm
+++ b/gnu/services/pm.scm
@@ -401,7 +401,8 @@ shutdown on system startup."))
(compose list tlp-configuration-tlp))
(service-extension activation-service-type
tlp-activation)))
- (default-value (tlp-configuration))))
+ (default-value (tlp-configuration))
+ (description "Run TLP, a power management tool.")))
(define (generate-tlp-documentation)
(generate-documentation
@@ -441,4 +442,6 @@ shutdown on system startup."))
(name 'thermald)
(extensions (list (service-extension shepherd-root-service-type
thermald-shepherd-service)))
- (default-value (thermald-configuration))))
+ (default-value (thermald-configuration))
+ (description "Run thermald, a CPU frequency scaling service that helps
+prevent overheating.")))