{ pkgs, ... }: { # CUPS printing with drivers for common Brother (brlaser) and generic # printers (gutenprint); cups-filters provides the filter backends. services.printing = { enable = true; drivers = with pkgs; [ brlaser gutenprint cups-filters ]; }; }