complete-computing-environment/printing.org

917 B

Printing Configuration in NixOS

NixOS makes setting up network-autodetected printers like my roommate's Brother Monochrome Laser Printer quite easy.

Mostly just lifted from NixOS Wiki to integrate with Arroyo NixOS through My NixOS configuration

{ ... }:

{
  services.printing.enable = true;
  services.avahi.enable = true;
  # Important to resolve .local domains of printers, otherwise you get an error
  # like  "Impossible to connect to XXX.local: Name or service not known"
  services.avahi.nssmdns = true;
}