nixos-configuration/modules/printing.nix
Vinzenz Schroeter d0a6abd2d8 statix fix
2024-10-27 12:42:26 +01:00

16 lines
316 B
Nix

_:
{
config = {
services = {
# Enable CUPS to print documents.
printing.enable = true;
avahi = {
enable = true; # runs the Avahi daemon
nssmdns4 = true; # enables the mDNS NSS plug-in
openFirewall = true; # opens the firewall for UDP port 5353
};
};
};
}