docs(printing): reduce default drivers
This commit is contained in:
parent
c9bff9d62e
commit
4d1b8df2e3
2 changed files with 58 additions and 23 deletions
57
docs/printing.md
Normal file
57
docs/printing.md
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
# Printing
|
||||
|
||||
This repo enables the CUPS printing service via `modules/system/printer.nix`, but it does **not** bundle any
|
||||
printer driver packages by default.
|
||||
|
||||
## Opt into drivers from a host file
|
||||
|
||||
Add driver packages to `services.printing.drivers` in your host module. Example:
|
||||
|
||||
```nix
|
||||
# hosts/my-host.nix
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.printing.drivers = [
|
||||
pkgs.gutenprint
|
||||
];
|
||||
}
|
||||
```
|
||||
|
||||
## Driver packages (cheat sheet)
|
||||
|
||||
Generic / common:
|
||||
|
||||
- `pkgs.gutenprint` — various printer drivers
|
||||
- `pkgs.gutenprintBin` — various binary printer drivers
|
||||
- `pkgs.cups-filters`
|
||||
- `pkgs.cups-browsed`
|
||||
|
||||
Brother:
|
||||
|
||||
- `pkgs.brgenml1cupswrapper`
|
||||
- `pkgs.brgenml1lpr`
|
||||
- `pkgs.brlaser`
|
||||
|
||||
Canon:
|
||||
|
||||
- `pkgs.cnijfilter2` — Canon Pixma drivers
|
||||
|
||||
Epson:
|
||||
|
||||
- `pkgs.epson-escpr`
|
||||
- `pkgs.epson-escpr2`
|
||||
|
||||
HP:
|
||||
|
||||
- `pkgs.hplip`
|
||||
- `pkgs.hplipWithPlugin` — proprietary plug-ins
|
||||
|
||||
Lexmark:
|
||||
|
||||
- `pkgs.postscript-lexmark`
|
||||
|
||||
Samsung:
|
||||
|
||||
- `pkgs.samsung-unified-linux-driver`
|
||||
- `pkgs.splix` — drivers for Samsung Printer Language printers
|
||||
Loading…
Add table
Add a link
Reference in a new issue