23 lines
977 B
Nix
23 lines
977 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
# https://nixos.wiki/wiki/Printing
|
|
services.printing.enable = true;
|
|
#services.printing.drivers = with pkgs; [ foo2zjs foomatic-filters cups-filters ];
|
|
#services.printing.drivers = with pkgs; [ foo2zjs hplip foomatic-filters cups-filters ];
|
|
services.printing.drivers = with pkgs; [ foo2zjs hplipWithPlugin foomatic-filters cups-filters ];
|
|
#services.printing.drivers = with pkgs; [ hplipWithPlugin cups-filters ];
|
|
|
|
#hardware.printers.ensureDefaultPrinter = lib.mkDefault "HP_LaserJet_P1005";
|
|
hardware.printers.ensurePrinters = lib.singleton {
|
|
name = "HP_LaserJet_P1005";
|
|
deviceUri = "hp:/usb/HP_LaserJet_P1005?serial=BC0CAEQ"; # `lpstat -s` # hplip
|
|
#deviceUri = "usb://HP/LaserJet%20P1005?serial=BC0CAEQ"; # `lpstat -s` # foo2zjs
|
|
model = "HP-LaserJet_P1005.ppd.gz"; # `lpinfo -m` # foo2zjs
|
|
#location = "";
|
|
description = "Laser printer";
|
|
ppdOptions.PageSize = "A4";
|
|
};
|
|
|
|
services.printing.logLevel = "debug";
|
|
}
|