blob: 91828b27fa7b6222e305eed37e384b6711ee9041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, ... }:
{
# CUPS printing with drivers for common Brother (brlaser) and generic
# printers (gutenprint); cups-filters provides the filter backends.
services.printing = {
enable = true;
drivers = with pkgs; [
brlaser
gutenprint
cups-filters
];
};
}
|