dotfiles/os/printing/default.nix

11 lines
186 B
Nix
Raw Normal View History

2024-01-28 12:13:27 +01:00
{ lib, config, ... }:
{
config = lib.mkIf config.services.printing.enable {
services.avahi = {
enable = true;
2024-06-01 21:32:11 +02:00
nssmdns4 = true;
2024-01-28 12:13:27 +01:00
openFirewall = true;
};
};
}