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