aboutsummaryrefslogtreecommitdiffstats
path: root/nixos/printing.nix
blob: 9eefaa8526090184abe14f983b39c2f37c216113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{pkgs, ...}: {
  services = {
    avahi = {
      enable = true;
      nssmdns4 = true;
      openFirewall = true;
    };

    printing = {
      enable = true;
      drivers = with pkgs; [
        cups-brother-hl1210w
      ];
    };
  };
}