nixpkgs/nixos/modules/hardware/i2c.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2023-06-04 21:22:32 +02:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.hardware.i2c;
in
{
options.hardware.i2c = {
2024-08-27 20:42:52 +02:00
enable = lib.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
logged on the computer locally
'';
2024-08-27 20:42:52 +02:00
group = lib.mkOption {
type = lib.types.str;
default = "i2c";
description = ''
Grant access to i2c devices (/dev/i2c-*) to users in this group.
'';
};
};
2024-08-27 20:42:52 +02:00
config = lib.mkIf cfg.enable {
boot.kernelModules = [ "i2c-dev" ];
2024-08-27 20:42:52 +02:00
users.groups = lib.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";
}
);
};
2024-08-27 20:42:52 +02:00
meta.maintainers = [ lib.maintainers.rnhmjoj ];
}