summaryrefslogtreecommitdiff
path: root/services/printing.nix
blob: 0d0a8c966d8818145b07354d854f403572ec1ae0 (plain)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:
{
  # Enable CUPS to print documents.
  services.printing = {
    enable = true;
    startWhenNeeded = true;
    drivers = with pkgs; [ gutenprint hplip ];
  };
}