fix(printing): switch from ipp everywhere to maintained brlaser fork

This commit is contained in:
Felix Schröter 2023-08-12 19:29:58 +02:00
parent 14c98ea552
commit f3c9ed76f5
Signed by: felschr
GPG key ID: 671E39E6744C807D
4 changed files with 113 additions and 3 deletions
system/printing

View file

@ -1,6 +1,8 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
services.printing.drivers = with pkgs; [ brlaser ];
hardware.printers = {
ensureDefaultPrinter = "Brother_HL-L2370DN";
ensurePrinters = [{
@ -8,7 +10,8 @@
description = "Brother HL-L2370DN";
deviceUri =
"dnssd://Brother%20HL-L2370DN%20series._ipp._tcp.local/?uuid=e3248000-80ce-11db-8000-b422007e1490";
model = "everywhere";
model = "drv:///brlaser.drv/brl2370d.ppd";
# model = "everywhere";
}];
};
}