diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-28 21:36:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-28 21:58:25 +0100 |
commit | cd6f6c22fb581e5ef2aa88f5e9c14a4c54a071c3 (patch) | |
tree | 2cb4a58c45015d81b11b9c2d552920da5f111f78 /emacs | |
parent | b0b9f6e0a62852a0b4d0a86d9e8427dd7d36a714 (diff) | |
download | patches-cd6f6c22fb581e5ef2aa88f5e9c14a4c54a071c3.tar patches-cd6f6c22fb581e5ef2aa88f5e9c14a4c54a071c3.tar.gz |
services: Add 'modify-services'.
* gnu/services.scm (%modify-service, modify-services): New macros.
* gnu/services/base.scm (mingetty-service-type, guix-service-type):
Export.
* emacs/guix-devel.el (guix-devel-keywords): Add 'modify-services'.
Ditto in 'guix-devel-scheme-indent' call.
* doc/guix.texi (Using the Configuration System): Give an example of
'modify-services'.
(Service Reference): Document it.
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/guix-devel.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/guix-devel.el b/emacs/guix-devel.el index 170ce1ad54..8eb030942c 100644 --- a/emacs/guix-devel.el +++ b/emacs/guix-devel.el @@ -198,6 +198,7 @@ to find 'modify-phases' keywords." "mbegin" "mlet" "mlet*" + "modify-services" "munless" "mwhen" "run-with-state" @@ -288,6 +289,7 @@ Each rule should have a form (SYMBOL VALUE). See `put' for details." (mlet 2) (mlet* 2) (modify-phases 1) + (modify-services 1) (munless 1) (mwhen 1) (operating-system 0) |