nixos-config/modules/core/printing.nix

22 lines
320 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
services = {
printing = {
enable = true;
drivers = with pkgs; [
cups-filters
cups-browsed
hplipWithPlugin
];
};
# avahi = {
# enable = false;
# nssmdns4 = true;
# openFirewall = true;
# };
ipp-usb.enable = true;
2025-01-10 20:48:19 +01:00
};
}