nixos/preload: init
[NixPkgs.git] / nixos / modules / services / hardware / sane_extra_backends / dsseries.nix
blob5b05694abc017ad86ee5673a36f9f19451f36e45
1 { config, lib, pkgs, ... }:
3 with lib;
6   options = {
8     hardware.sane.dsseries.enable =
9       mkEnableOption (lib.mdDoc "Brother DSSeries scan backend") // {
10       description = lib.mdDoc ''
11         When enabled, will automatically register the "dsseries" SANE backend.
13         This supports the Brother DSmobile scanner series, including the
14         DS-620, DS-720D, DS-820W, and DS-920DW scanners.
15       '';
16     };
17   };
19   config = mkIf (config.hardware.sane.enable && config.hardware.sane.dsseries.enable) {
21     hardware.sane.extraBackends = [ pkgs.dsseries ];
22     services.udev.packages = [ pkgs.dsseries ];
23     boot.kernelModules = [ "sg" ];
25   };