1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
|
{
config,
lib,
pkgs,
...
}:
let
cfg = config.hardware.printers;
inherit (lib)
concatLines
escapeShellArg
mkOption
;
inherit (lib.types)
attrsOf
listOf
nullOr
str
submodule
;
ensurePrinter =
p:
let
args = lib.cli.toCommandLineShellGNU { } (
{
p = p.name;
v = p.deviceUri;
m = p.model;
}
// lib.optionalAttrs (p.location != null) {
L = p.location;
}
// lib.optionalAttrs (p.description != null) {
D = p.description;
}
// lib.optionalAttrs (p.ppdOptions != { }) {
o = lib.mapAttrsToList (name: value: "${name}=${value}") p.ppdOptions;
}
);
in
''
# shellcheck disable=SC2016
${pkgs.cups}/bin/lpadmin ${args} -E
'';
ensureDefaultPrinter = name: ''
${pkgs.cups}/bin/lpadmin -d '${name}'
'';
# "graph but not # or /" can't be implemented as regex alone due to missing lookahead support
noInvalidChars = str: lib.all (c: c != "#" && c != "/") (lib.stringToCharacters str);
printerName = (lib.types.addCheck (lib.types.strMatching "[[:graph:]]+") noInvalidChars) // {
description = "printable string without spaces, # and /";
};
getPrinters =
class:
lib.uniqueStrings (
lib.concatLists (
lib.textClosureList (lib.mapAttrs (
_:
{
classes ? [ ],
printers ? [ ],
...
}:
{
deps = classes;
text = printers;
}
) cfg.ensureClasses) [ class ]
)
);
mkClass = name: ''
lpadmin -p _tmp -v file:/dev/null
lpadmin -p _tmp -c ${escapeShellArg name}
lpadmin -x _tmp
'';
populateClass =
name:
{
description ? null,
location ? null,
...
}:
lib.concatStringsSep "\n" [
(lib.optionalString (location != null) ''
lpadmin -p ${escapeShellArg name} -L ${escapeShellArg location}
'')
(lib.optionalString (description != null) ''
lpadmin -p ${escapeShellArg name} -D ${escapeShellArg description}
'')
];
addPrintersToClass =
className: class:
let
printers = getPrinters className;
addToClass = printer: ''
lpadmin -p ${escapeShellArg printer} -c ${escapeShellArg className}
'';
in
map addToClass printers;
enableClass = className: ''
cupsenable ${escapeShellArg className}
cupsaccept ${escapeShellArg className}
'';
# if CUPS is configured only to start when it's needed, we can kill the service
# once the printer setup is done. However, if stateless is configured then we
# can't shut down the servive without losing the printers (and classes) we
# *just* configured.
ultimatelyStopCups = with config.services.printing; startWhenNeeded && !stateless;
in
{
options = {
hardware.printers = {
ensureDefaultPrinter = lib.mkOption {
type = lib.types.nullOr printerName;
default = null;
description = ''
Ensures the named printer is the default CUPS printer / printer queue.
'';
};
ensureClasses = mkOption {
description = ''
Will ensure that the given CUPS classes are configured as declared.
Please note that it is possible for some users to temporarily override
these properties. If those changes conflict with this configuration,
the configuration will take precedence and override them at boot and
when a rebuild is applied. This configuration will not delete any
classes that have been removed from the list. In order to list classes
you can use {command}`lpstat -c`. It will list any classes without
members as having a member titled `unknown`. Print jobs to empty
classes will silently fail. In order to remove a class, run
{command}`lpadmin -x <class name>`. Classes can still be added
manually. For more on classes see
<https://www.cups.org/doc/admin.html#CLASSES>, or
{manpage}`lpadmin(8)`.
'';
type = attrsOf (submodule {
options = {
description = mkOption {
type = nullOr str;
description = "Optional human-readable description";
example = "Printers that support color printing";
};
location = mkOption {
type = nullOr str;
description = "Optional human-readable location";
example = "Workroom";
};
printers = mkOption {
type = listOf str;
default = [ ];
example = [
"BrotherHL_Workroom"
"EpsonColor_Basement"
];
description = ''
A list of printers included in this class. Note that all
printers in this list must also be present in
config.hardware.printers.ensurePrinters. Specifying a symblic
name here that does not match any of those printers is
considered a hard error.
::: {.warning}
Print jobs to this class will quietly fail if there are no
printers in this class. CUPS reports them as pending
:::
'';
};
classes = mkOption {
type = listOf str;
default = [ ];
description = ''
A list of classes to include in this class.
::: {.note}
CUPS itself does not support nested classes. Any classes will
simply have all of their member printers added to this class
in a recursive manner. This is an abstraction that serves the
purpose of convenience and expressiveness, not a 1:1 mapping
on top of CUPS.
:::
'';
};
};
});
};
ensurePrinters = lib.mkOption {
description = ''
Will regularly ensure that the given CUPS printers are configured as declared here.
If a printer's options are manually changed afterwards, they will be overwritten eventually.
This option will never delete any printer, even if removed from this list.
You can check existing printers with {command}`lpstat -s`
and remove printers with {command}`lpadmin -x <printer-name>`.
Printers not listed here can still be manually configured.
'';
default = [ ];
type = lib.types.listOf (
lib.types.submodule {
options = {
name = lib.mkOption {
type = printerName;
example = "BrotherHL_Workroom";
description = ''
Name of the printer / printer queue.
May contain any printable characters except "/", "#", and space.
'';
};
location = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "Workroom";
description = ''
Optional human-readable location.
'';
};
description = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default = null;
example = "Brother HL-5140";
description = ''
Optional human-readable description.
'';
};
deviceUri = lib.mkOption {
type = lib.types.str;
example = lib.literalExpression ''
"ipp://printserver.local/printers/BrotherHL_Workroom"
"usb://HP/DESKJET%20940C?serial=CN16E6C364BH"
'';
description = ''
How to reach the printer.
{command}`lpinfo -v` shows a list of supported device URIs and schemes.
'';
};
model = lib.mkOption {
type = lib.types.str;
example = lib.literalExpression ''
"gutenprint.''${lib.versions.majorMinor (lib.getVersion pkgs.gutenprint)}://brother-hl-5140/expert"
'';
description = ''
Location of the ppd driver file for the printer.
{command}`lpinfo -m` shows a list of supported models.
'';
};
ppdOptions = lib.mkOption {
type = lib.types.attrsOf lib.types.str;
example = {
PageSize = "A4";
Duplex = "DuplexNoTumble";
};
default = { };
description = ''
Sets PPD options for the printer.
{command}`lpoptions [-p printername] -l` shows supported PPD options for the given printer.
'';
};
};
}
);
};
};
};
config.assertions = lib.mkIf config.services.printing.enable [
(
let
referencedClasses = lib.unique (
lib.flatten (
lib.mapAttrsToList (
_:
{
classes ? [ ],
...
}:
classes
) cfg.ensureClasses
)
);
definedClasses = lib.attrNames cfg.ensureClasses;
missingClasses = lib.subtractLists definedClasses referencedClasses;
getReferencingClasses =
missingClass:
(lib.mapAttrsToList (name: _: "`${name}`") (
lib.filterAttrs (
_:
{
classes ? [ ],
...
}:
builtins.elem missingClass classes
) cfg.ensureClasses
));
in
{
assertion = missingClasses == [ ];
message = ''
One or more values of `config.hardware.printers.ensureClasses.<name>.classes`
contained values not present in `config.hardware.printers.ensureClasses`
Missing classes:
${lib.concatMapStringsSep "\n" (
p: " - `${p}` (included in class(es): ${lib.concatStringsSep ", " (getReferencingClasses p)})"
) missingClasses}
'';
}
)
(
let
referencedPrinters = lib.unique (
lib.flatten (
lib.mapAttrsToList (
_:
{
printers ? [ ],
...
}:
printers
) cfg.ensureClasses
)
);
definedPrinters = lib.catAttrs "name" cfg.ensurePrinters;
missingPrinters = lib.subtractLists definedPrinters referencedPrinters;
getReferencingClasses =
missingPrinter:
(lib.mapAttrsToList (name: _: "`${name}`") (
lib.filterAttrs (
_:
{
printers ? [ ],
...
}:
builtins.elem missingPrinter printers
) cfg.ensureClasses
));
in
{
assertion = missingPrinters == [ ];
message = ''
One or more values of `config.hardware.printers.ensureClasses.<name>.printers`
contained values not present in `config.hardware.printers.ensurePrinters`
Missing printers:
${lib.concatMapStringsSep "\n" (
p: " - `${p}` (included in class(es): ${lib.concatStringsSep ", " (getReferencingClasses p)})"
) missingPrinters}
'';
}
)
];
config.systemd.services.ensure-printer-classes =
lib.mkIf (cfg.ensureClasses != { } && config.services.printing.enable)
{
description = "Ensure NixOS-configured CUPS classes";
wantedBy = [ "multi-user.target" ];
wants = [
"cups.service"
];
after = [
"cups.service"
"ensure-printers.service"
];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
};
path = with pkgs; [ cups ];
script =
let
attrMap = fn: l: map fn (builtins.attrNames l);
classDefs = lib.pipe cfg.ensureClasses [
(attrMap mkClass)
concatLines
];
classAdds = lib.pipe cfg.ensureClasses [
(lib.mapAttrsToList addPrintersToClass)
lib.flatten
concatLines
];
populatedClasses = lib.pipe cfg.ensureClasses [
(lib.mapAttrsToList populateClass)
concatLines
];
enables = lib.pipe cfg.ensureClasses [
(attrMap enableClass)
concatLines
];
in
''
#### CLASS DEFINITIONS ####
${classDefs}
#### ADDING PRINTERS TO CLASSES ####
${classAdds}
#### POPULATING CLASSES ####
${populatedClasses}
#### ENABLING CLASSES ####
${enables}
${lib.optionalString ultimatelyStopCups "systemctl stop cups.service"}
'';
};
config.systemd.services.ensure-printers =
lib.mkIf (cfg.ensurePrinters != [ ] && config.services.printing.enable)
{
description = "Ensure NixOS-configured CUPS printers";
wantedBy = [ "multi-user.target" ];
wants = [ "cups.service" ];
after = [ "cups.service" ];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
};
script = lib.concatStringsSep "\n" [
(lib.concatMapStrings ensurePrinter cfg.ensurePrinters)
(lib.optionalString (cfg.ensureDefaultPrinter != null) (
ensureDefaultPrinter cfg.ensureDefaultPrinter
))
# Let ensure-printer-classes.service kill cups because it is called
# after this service.
(lib.optionalString (
ultimatelyStopCups && !(config.systemd.services ? ensure-printer-classes)
) "systemctl stop cups.service")
];
};
}
|