Files
nixos/hosts/nb-01.cloonar.com/modules/printer.nix
2023-09-07 09:54:15 +02:00

29 lines
733 B
Nix

{ lib, pkgs, ... }:
let
in {
services.printing.enable = true;
# services.printing.drivers = [ pkgs.brlaser ];
services.avahi.enable = true;
services.avahi.nssmdns = true;
services.avahi.openFirewall = true;
hardware.printers = {
ensureDefaultPrinter = "Cloonar";
ensurePrinters = [
# {
# name = "Office";
# deviceUri = "socket://mercury.epicenter.intra";
# description = lib.replaceStrings [ "_" ] [ " " ] brother;
# location = "Office";
# }
{
name = "Cloonar";
deviceUri = "ipp://brn30055c566237.cloonar.multimedia/ipp";
model = "everywhere";
description = "Brother HL-L2360D";
location = "Office";
}
];
};
}