10 lines
159 B
Nix
10 lines
159 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
lib.mkIf config.services.printing.enable {
|
||
|
services.avahi = {
|
||
|
enable = true;
|
||
|
nssmdns4 = true;
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
}
|