summaryrefslogtreecommitdiff
path: root/nixos/modules/system/printing/default.nix
blob: 26ceb0339a750dc18aec03abea01335edfea917c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:

{
  services.printing = {
    enable = true;
    drivers = with pkgs; [
      brlaser
      gutenprint
      cups-filters
    ];
  };
}