1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/nixos/modules/services/hardware/sane.nix

56 lines
1.2 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
2013-10-30 12:37:45 -04:00
let
pkg = if config.hardware.sane.snapshot then pkgs.saneBackendsGit else pkgs.saneBackends;
backends = [ pkg ] ++ config.hardware.sane.extraBackends;
saneConfig = pkgs.mkSaneConfig { paths = backends; };
2013-10-30 12:37:45 -04:00
in
{
###### interface
options = {
hardware.sane.enable = mkOption {
2013-10-30 12:37:45 -04:00
type = types.bool;
default = false;
description = "Enable support for SANE scanners.";
};
hardware.sane.snapshot = mkOption {
2013-10-30 12:37:45 -04:00
type = types.bool;
default = false;
description = "Use a development snapshot of SANE scanner drivers.";
};
hardware.sane.extraBackends = mkOption {
type = types.listOf types.path;
default = [];
description = "Packages providing extra SANE backends to enable.";
};
};
###### implementation
2013-10-30 12:37:45 -04:00
config = mkIf config.hardware.sane.enable {
environment.systemPackages = backends;
environment.sessionVariables = {
SANE_CONFIG_DIR = mkDefault "${saneConfig}/etc/sane.d";
LD_LIBRARY_PATH = [ "${saneConfig}/lib/sane" ];
};
services.udev.packages = backends;
2013-10-30 12:37:45 -04:00
users.extraGroups."scanner".gid = config.ids.gids.scanner;
};
}