From 113335223f60547811c9e8ec485b8b0b438be811 Mon Sep 17 00:00:00 2001 From: Alejandro Angulo Date: Sun, 2 Oct 2022 09:53:39 -0700 Subject: [PATCH] Added support for printing over the network --- system/gospel/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/system/gospel/configuration.nix b/system/gospel/configuration.nix index 0dff0eb..886a4aa 100644 --- a/system/gospel/configuration.nix +++ b/system/gospel/configuration.nix @@ -123,6 +123,13 @@ pulse.enable = true; }; + # Setup printing over the network + services.printing.enable = true; + services.avahi = { + enable = true; + nssmdns = true; + }; + # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];