summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/gphoto2.nix
blob: 1099241a5486cc613d1b9406a20bf40b99d93bf7 (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
31
32
33
{
  config,
  lib,
  pkgs,
  ...
}:

{
  meta.maintainers = [ lib.maintainers.league ];

  ###### interface
  options = {
    programs.gphoto2 = {
      enable = lib.mkOption {
        default = false;
        type = lib.types.bool;
        description = ''
          Whether to configure system to use gphoto2.
          To grant digital camera access to a user, the user must
          be part of the camera group:
          `users.users.alice.extraGroups = ["camera"];`
        '';
      };
    };
  };

  ###### implementation
  config = lib.mkIf config.programs.gphoto2.enable {
    services.udev.packages = [ pkgs.libgphoto2 ];
    environment.systemPackages = [ pkgs.gphoto2 ];
    users.groups.camera = { };
  };
}