nixos-configuration/modules/printing.nix
Vinzenz Schroeter 96243b2f06 nix fmt
2024-11-24 13:18:43 +01:00

15 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
};
};
};
}