about summary refs log tree commit diff stats
path: root/system/services/printing/default.nix
blob: 3b193eabae27dac2ae0cd945a873e2ea6b26d0db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# vim: ts=2
{
  config,
  pkgs,
  ...
}: {
  services.printing = {
    enable = true;
    webInterface = false; # don't enable the webinterface
    drivers = with pkgs; [
      gutenprint
    ];
  };
  hardware.sane = {
    # TODO this properly won't work like this
    enable = true;
    extraBackends = [pkgs.sane-airscan];
  };
}