summaryrefslogtreecommitdiffstats
path: root/lass/2configs/print.nix
blob: c2b3e83776973b63a7f31bc93e92a19a5f7a69b8 (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }:
{
  services.printing = {
    enable = true;
    drivers = [
      pkgs.foomatic-filters
      pkgs.gutenprint
    ];
  };
}