mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
42 lines
964 B
Nix
42 lines
964 B
Nix
_: {
|
|
flake.nixosModules.printer = {pkgs, ...}: {
|
|
#https://wiki.nixos.org/wiki/Printing
|
|
services.avahi = {
|
|
enable = true;
|
|
nssmdns4 = true;
|
|
openFirewall = true;
|
|
};
|
|
|
|
# Enable CUPS to print documents.
|
|
services.printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [
|
|
cups-filters
|
|
#cups-browsed
|
|
#gutenprint
|
|
#gutenprintBin
|
|
hplipWithPlugin
|
|
hplip
|
|
];
|
|
};
|
|
services.ipp-usb.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
kdePackages.print-manager
|
|
ghostscript
|
|
hplipWithPlugin
|
|
];
|
|
hardware.printers = {
|
|
ensurePrinters = [
|
|
{
|
|
name = "HP_OfficeJet_Pro_7740";
|
|
location = "Home";
|
|
deviceUri = "hp:/usb/OfficeJet_Pro_7740_series";
|
|
model = "drv:///hp/hpcups.drv/hp-officejet_pro_7740_series.ppd";
|
|
}
|
|
];
|
|
|
|
ensureDefaultPrinter = "HP_OfficeJet_Pro_7740";
|
|
};
|
|
};
|
|
}
|