nixfleet/modules/printing/default.nix
2022-10-11 20:46:44 +02:00

12 lines
294 B
Nix

{
config,
lib,
pkgs,
...
}: {
services.avahi.enable = true;
# Important to resolve .local domains of printers, otherwise you get an error
# like "Impossible to connect to XXX.local: Name or service not known"
services.avahi.nssmdns = true;
services.printing.enable = true;
}