summary refs log tree commit diff stats
path: root/sys/services/printing/default.nix
blob: c2a391d3db406bfd2f82dadc9359db288954be3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{pkgs, ...}: {
  services = {
    printing = {
      enable = true;
      drivers = with pkgs; [epson-escpr hplip];
    };
    avahi = {
      enable = true;
      openFirewall = true;
    };
  };
}