forked from mirrors/nixpkgs
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
44 lines
954 B
Nix
44 lines
954 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.hardware.i2c;
|
|
in
|
|
|
|
{
|
|
options.hardware.i2c = {
|
|
enable = mkEnableOption (lib.mdDoc ''
|
|
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.
|
|
'');
|
|
|
|
group = mkOption {
|
|
type = types.str;
|
|
default = "i2c";
|
|
description = lib.mdDoc ''
|
|
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 = { };
|
|
};
|
|
|
|
services.udev.extraRules = ''
|
|
# 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"
|
|
'';
|
|
|
|
};
|
|
|
|
meta.maintainers = [ maintainers.rnhmjoj ];
|
|
|
|
}
|