1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-26 19:16:47 +03:00
nixpkgs/nixos/modules/services/hardware/sane_extra_backends/dsseries.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
638 B
Nix
Raw Normal View History

2019-03-08 14:58:32 +00:00
{
config,
lib,
pkgs,
...
}:
{
options = {
hardware.sane.dsseries.enable = lib.mkEnableOption "Brother DSSeries scan backend" // {
description = ''
2019-03-08 14:58:32 +00:00
When enabled, will automatically register the "dsseries" SANE backend.
This supports the Brother DSmobile scanner series, including the
DS-620, DS-720D, DS-820W, and DS-920DW scanners.
'';
};
};
config = lib.mkIf (config.hardware.sane.enable && config.hardware.sane.dsseries.enable) {
2019-03-08 14:58:32 +00:00
hardware.sane.extraBackends = [ pkgs.dsseries ];
services.udev.packages = [ pkgs.dsseries ];
boot.kernelModules = [ "sg" ];
};
}