flake/nixos/printing.nix

14 lines
227 B
Nix
Raw Normal View History

2025-03-07 20:18:27 -06:00
{ pkgs, ... }:
2025-03-07 18:39:05 -06:00
{
2025-03-07 20:18:27 -06:00
# Printer drivers
services.printing.drivers = with pkgs; [
cups-brother-hl3170cdw
];
2025-03-07 18:39:05 -06:00
# IPP Autodiscovery
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
}