14 lines
333 B
Nix
14 lines
333 B
Nix
|
{pkgs, ...}: {
|
||
|
services.printing.enable = true;
|
||
|
services.printing.browsing = true;
|
||
|
services.printing.browsedConf = ''
|
||
|
BrowseDNSSDSubTypes _cups,_print
|
||
|
BrowseLocalProtocols all
|
||
|
BrowseRemoteProtocols all
|
||
|
CreateIPPPrinterQueues All
|
||
|
|
||
|
BrowseProtocols all
|
||
|
'';
|
||
|
services.printing.drivers = [pkgs.gutenprint];
|
||
|
}
|