From fc58ce98cb27a04038963f5ab8bb07f8426f1e1f Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 22 Aug 2023 11:29:07 +0200 Subject: [PATCH] remove printer with everywhere driver --- hosts/nb-01.cloonar.com/modules/printer.nix | 24 ++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/hosts/nb-01.cloonar.com/modules/printer.nix b/hosts/nb-01.cloonar.com/modules/printer.nix index db9ea26..989f391 100644 --- a/hosts/nb-01.cloonar.com/modules/printer.nix +++ b/hosts/nb-01.cloonar.com/modules/printer.nix @@ -8,16 +8,16 @@ in { services.avahi.nssmdns = true; services.avahi.openFirewall = true; - hardware.printers = { - ensureDefaultPrinter = brother; - ensurePrinters = [ - { - name = brother; - deviceUri = "ipp://${hostName}/ipp"; - model = "everywhere"; - description = lib.replaceStrings [ "_" ] [ " " ] brother; - location = "Study"; - } - ]; - }; + # hardware.printers = { + # ensureDefaultPrinter = brother; + # ensurePrinters = [ + # { + # name = brother; + # deviceUri = "ipp://${hostName}/ipp"; + # model = "everywhere"; + # description = lib.replaceStrings [ "_" ] [ " " ] brother; + # location = "Study"; + # } + # ]; + # }; }