summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware/saleae-logic.nix
blob: dbfdf64fc2c1002893e1b42ce1c8ed23be6582e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  config,
  lib,
  pkgs,
  ...
}:

let
  cfg = config.hardware.saleae-logic;
in
{
  options.hardware.saleae-logic = {
    enable = lib.mkEnableOption "udev rules for Saleae Logic devices";

    package = lib.mkOption {
      type = lib.types.package;
      default = pkgs.saleae-logic-2;
      defaultText = lib.literalExpression "pkgs.saleae-logic-2";
      description = ''
        Saleae Logic package to use.
      '';
    };
  };

  config = lib.mkIf cfg.enable {
    services.udev.packages = [ cfg.package ];
  };

  meta.maintainers = with lib.maintainers; [ chivay ];
}