8 lines
151 B
Nix
8 lines
151 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.printing.enable = true;
|
|
services.printing.cups-pdf.enable = true;
|
|
services.printing.drivers = with pkgs; [ hplip ];
|
|
}
|