vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / hardware / i2c.nix
blob4dd7a8ccc5310257b591301d7bfafddf8157cb95
1 { config, lib, pkgs, ... }:
2 let
3   cfg = config.hardware.i2c;
4 in
7   options.hardware.i2c = {
8     enable = lib.mkEnableOption ''
9       i2c devices support. By default access is granted to users in the "i2c"
10       group (will be created if non-existent) and any user with a seat, meaning
11       logged on the computer locally
12     '';
14     group = lib.mkOption {
15       type = lib.types.str;
16       default = "i2c";
17       description = ''
18         Grant access to i2c devices (/dev/i2c-*) to users in this group.
19       '';
20     };
21   };
23   config = lib.mkIf cfg.enable {
25     boot.kernelModules = [ "i2c-dev" ];
27     users.groups = lib.mkIf (cfg.group == "i2c") {
28       i2c = { };
29     };
31     services.udev.packages = lib.singleton (pkgs.writeTextFile
32       { name = "i2c-udev-rules";
33         text = ''
34           # allow group ${cfg.group} and users with a seat use of i2c devices
35           ACTION=="add", KERNEL=="i2c-[0-9]*", TAG+="uaccess", GROUP="${cfg.group}", MODE="660"
36         '';
37         destination = "/etc/udev/rules.d/70-i2c.rules";
38       });
40   };
42   meta.maintainers = [ lib.maintainers.rnhmjoj ];