2023-06-04 21:22:32 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2021-02-05 08:52:51 +01:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.hardware.i2c;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options.hardware.i2c = {
|
|
|
|
enable = mkEnableOption ''
|
|
|
|
i2c devices support. By default access is granted to users in the "i2c"
|
|
|
|
group (will be created if non-existent) and any user with a seat, meaning
|
2023-10-18 22:59:26 +02:00
|
|
|
logged on the computer locally
|
2021-02-05 08:52:51 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "i2c";
|
|
|
|
description = ''
|
|
|
|
Grant access to i2c devices (/dev/i2c-*) to users in this group.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
|
|
|
boot.kernelModules = [ "i2c-dev" ];
|
|
|
|
|
|
|
|
users.groups = mkIf (cfg.group == "i2c") {
|
|
|
|
i2c = { };
|
|
|
|
};
|
|
|
|
|
2023-06-04 21:22:32 +02:00
|
|
|
services.udev.packages = lib.singleton (pkgs.writeTextFile
|
|
|
|
{ name = "i2c-udev-rules";
|
|
|
|
text = ''
|
|
|
|
# allow group ${cfg.group} and users with a seat use of i2c devices
|
|
|
|
ACTION=="add", KERNEL=="i2c-[0-9]*", TAG+="uaccess", GROUP="${cfg.group}", MODE="660"
|
|
|
|
'';
|
|
|
|
destination = "/etc/udev/rules.d/70-i2c.rules";
|
|
|
|
});
|
2021-02-05 08:52:51 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
meta.maintainers = [ maintainers.rnhmjoj ];
|
|
|
|
|
|
|
|
}
|