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