2019-12-22 20:10:48 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.hardware.uinput;
|
|
|
|
in {
|
|
|
|
options.hardware.uinput = {
|
2022-08-28 20:18:44 +01:00
|
|
|
enable = lib.mkEnableOption (lib.mdDoc "uinput support");
|
2019-12-22 20:10:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
boot.kernelModules = [ "uinput" ];
|
|
|
|
|
|
|
|
users.groups.uinput = {};
|
|
|
|
|
|
|
|
services.udev.extraRules = ''
|
|
|
|
SUBSYSTEM=="misc", KERNEL=="uinput", MODE="0660", GROUP="uinput", OPTIONS+="static_node=uinput"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|