generation 532 25.11.20250714.62e0f05

This commit is contained in:
2025-10-15 14:56:09 -04:00
parent da70ddd712
commit eda2ab34bd
6 changed files with 91 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
{
config,
pkgs,
...
}: let
printer = "SCS-public";
in {
services.printing.drivers = with pkgs; [foomatic-db-ppds];
hardware.printers = {
ensureDefaultPrinter = printer;
# https://computing.cs.cmu.edu/desktop/printing-linux-private
ensurePrinters = [
{
name = printer;
deviceUri = "lpd://jginesin@scs-print.srv.cs.cmu.edu/${printer}";
model =
pkgs.foomatic-db-ppds.pname
+ "/KONICA_MINOLTA-bizhub_360-Postscript-KONICA_MINOLTA.ppd.gz";
}
];
};
}

View File

@@ -9,5 +9,6 @@
./syncthing/default.nix
# ./resolved/default.nix (not enabled, in favor of dnsmasq)
./dnsmasq/default.nix
./printing.nix
];
}