11 lines
185 B
Nix
11 lines
185 B
Nix
{ lib, config, ... }:
|
|
{
|
|
config = lib.mkIf config.services.printing.enable {
|
|
services.avahi = {
|
|
enable = true;
|
|
nssmdns = true;
|
|
openFirewall = true;
|
|
};
|
|
};
|
|
}
|