# NOTE: Login to contaier, run passwd and use that root/pw combo for administration. `AllowFrom = all` doesn't seem to work. # ipp://10.0.0.10 # Pantum M6500W-Series { __findFile, pkgs, ... }@args: let package = pkgs.callPackage args; in { services.printing = { enable = true; allowFrom = [ "all" ]; browsing = true; defaultShared = true; drivers = [ package ]; listenAddresses = [ "0.0.0.0:631" ]; startWhenNeeded = true; stateless = false; webInterface = true; }; }