2021-04-06 13:37:40 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.printing.enable = true;
|
2022-06-29 14:12:26 +02:00
|
|
|
services.printing.drivers = with pkgs; [ hplipWithPlugin ];
|
2021-04-06 13:37:40 +02:00
|
|
|
hardware.sane.enable = true;
|
|
|
|
hardware.sane.extraBackends = [ pkgs.hplipWithPlugin ];
|
|
|
|
}
|