grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / hardware / sane_extra_backends / dsseries.nix
blobd71a17f5ea6b4758ba56140e168f54077859e18b
1 { config, lib, pkgs, ... }:
3 with lib;
6   options = {
8     hardware.sane.dsseries.enable =
9       mkEnableOption "Brother DSSeries scan backend" // {
10       description = ''
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   };