7 lines
205 B
Nix
7 lines
205 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.printing.enable = true;
|
|
services.printing.drivers = with pkgs; [ hplipWithPlugin ];
|
|
hardware.sane.enable = true;
|
|
hardware.sane.extraBackends = [ pkgs.hplipWithPlugin ];
|
|
}
|