18 lines
293 B
Nix
18 lines
293 B
Nix
# Enable printing support
|
|
{pkgs, ...}: {
|
|
# Autodiscovery of network printers
|
|
services.avahi = {
|
|
enable = true;
|
|
nssmdns4 = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
services.printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [
|
|
cups-filters
|
|
cups-browsed
|
|
];
|
|
};
|
|
}
|