summaryrefslogtreecommitdiff
path: root/modules/pc/services/printing.nix
blob: f7a38de58d1cca4ccc5a8c8b83085cc4434f7fca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ pkgs, ... }:
{
  services = {
    printing = {
      enable = true;

      drivers = with pkgs; [
        gutenprint
        hplip
      ];
    };

    avahi = {
      enable = true;
      nssmdns4 = true;
      openFirewall = true;
    };
  };
}