nixos-config/system/printing/home.nix

19 lines
483 B
Nix
Raw Normal View History

{ pkgs, ... }:
2023-06-07 12:03:33 +02:00
{
services.printing.drivers = with pkgs; [ brlaser ];
2023-06-07 12:03:33 +02:00
hardware.printers = {
ensureDefaultPrinter = "Brother_HL-L2370DN";
2024-05-26 16:45:38 +02:00
ensurePrinters = [
{
name = "Brother_HL-L2370DN";
description = "Brother HL-L2370DN";
deviceUri = "dnssd://Brother%20HL-L2370DN%20series._ipp._tcp.local/?uuid=e3248000-80ce-11db-8000-b422007e1490";
model = "drv:///brlaser.drv/brl2370d.ppd";
# model = "everywhere";
}
];
2023-06-07 12:03:33 +02:00
};
}