dotfiles/os/printing/default.nix

11 lines
185 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;
nssmdns = true;
openFirewall = true;
};
};
}