From 8611d3a65482c0ea55b440882fc0e049bc10efce Mon Sep 17 00:00:00 2001 From: Vegard Bieker Matthey Date: Tue, 16 Jun 2026 18:13:03 +0200 Subject: [PATCH] home printer --- hosts/talos/configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/hosts/talos/configuration.nix b/hosts/talos/configuration.nix index 6943728..4f9da86 100644 --- a/hosts/talos/configuration.nix +++ b/hosts/talos/configuration.nix @@ -53,7 +53,7 @@ drivers = [ pkgs.cups-filters pkgs.cups-browsed - (pkgs.writeTextDir "share/cups/model/myPrint_PS.ppd" (builtins.readFile ./../../myPrint_PS.ppd)) + (pkgs.writeTextDir "share/cups/model/myPrint_PS.ppd" (builtins.readFile ./../../drivers/myPrint_PS.ppd)) ]; }; @@ -68,6 +68,15 @@ PageSize = "A4"; }; } + { + name = "Home-Print"; + location = "Home"; + deviceUri = "usb://Brother/DCP-7010?serial=000C7J383164"; + model = "drv:///sample.drv/generic.ppd"; + ppdOptions = { + PageSize = "A4"; + }; + } ]; fonts.fontconfig.enable = true;