12 lines
294 B
Nix
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;
|
|
}
|