diff options
author | Diego Nicola Barbato <dnbarbato@posteo.de> | 2018-01-28 20:59:02 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-01-28 23:54:00 +0100 |
commit | d2a7170def9f0adf7e60ff1d9e39737e3b412c59 (patch) | |
tree | 6e2c3b73404f3b1ceb1dc821f6e601a8424fb461 /doc | |
parent | b0dea60cee97589ec346ef4d9907e426b95c6f62 (diff) | |
download | patches-d2a7170def9f0adf7e60ff1d9e39737e3b412c59.tar patches-d2a7170def9f0adf7e60ff1d9e39737e3b412c59.tar.gz |
doc: Mention escpr in CUPS configuration example.
Suggested by Danny Milosavljevic <dannym@scratchpost.org>.
* doc/guix.texi (Printing Services): Mention how to add support for
Epson printers to CUPS via escpr in the configuration example.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 983e00ab38..3ad9479489 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -11322,16 +11322,16 @@ CUPS service will generate a self-signed certificate if needed, for secure connections to the print server. Suppose you want to enable the Web interface of CUPS and also add -support for HP printers @i{via} the @code{hplip} package. You can do -that directly, like this (you need to use the @code{(gnu packages cups)} -module): +support for Epson printers @i{via} the @code{escpr} package and for HP +printers @i{via} the @code{hplip} package. You can do that directly, +like this (you need to use the @code{(gnu packages cups)} module): @example (service cups-service-type (cups-configuration (web-interface? #t) (extensions - (list cups-filters hplip)))) + (list cups-filters escpr hplip)))) @end example The available configuration parameters follow. Each parameter |