feat(system): add fonts and printing support
This commit is contained in:
parent
98d681cf32
commit
dbc5b8a1d2
5 changed files with 53 additions and 1 deletions
27
modules/system/printer.nix
Normal file
27
modules/system/printer.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.printing = {
|
||||
enable = true;
|
||||
drivers = [
|
||||
# The generic CUPS and Gutenprint drivers usually suffice for most printers
|
||||
# Uncomment the drivers for your printer brand in case these don't work
|
||||
|
||||
# pkgs.brgenml1cupswrapper # Brother printer drivers
|
||||
# pkgs.brgenml1lpr # Brother printer drivers
|
||||
# pkgs.brlaser # Brother laser printer drivers
|
||||
# pkgs.cnijfilter2 # Canon Pixma drivers
|
||||
pkgs.cups-filters
|
||||
pkgs.cups-browsed
|
||||
# pkgs.epson-escpr # Epson printer drivers
|
||||
# pkgs.epson-escpr2 # Newer Epson printer drivers
|
||||
pkgs.gutenprint # Various printer drivers
|
||||
pkgs.gutenprintBin # Various binary printer drivers
|
||||
# pkgs.hplip # HP printer drivers
|
||||
# pkgs.hplipWithPlugin # HP printer drivers with proprietary plug-ins
|
||||
# pkgs.postscript-lexmark # Lexmark printer drivers
|
||||
# pkgs.samsung-unified-linux-driver # Samsung printer drivers
|
||||
# pkgs.splix # Drivers for Samsung Printer Language printers
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue