22 lines
537 B
Nix
22 lines
537 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.printing = {
|
|
enable = true;
|
|
drivers = [ pkgs.brlaser ];
|
|
};
|
|
hardware.printers = {
|
|
ensurePrinters = [
|
|
{
|
|
name = "Brother_HL-L2370DW_series";
|
|
location = "Home";
|
|
deviceUri = "dnssd://Brother%20HL-L2370DW%20series._ipp._tcp.local/?uuid=e3248000-80ce-11db-8000-3c2af4f28c38";
|
|
model = "drv:///brlaser.drv/brl2370d.ppd";
|
|
ppdOptions = {
|
|
PageSize = "Letter";
|
|
};
|
|
}
|
|
];
|
|
ensureDefaultPrinter = "Brother_HL-L2370DW_series";
|
|
};
|
|
}
|