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