b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
19 lines
423 B
Nix
19 lines
423 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
cfg = config.hardware.uinput;
|
|
in {
|
|
options.hardware.uinput = {
|
|
enable = lib.mkEnableOption (lib.mdDoc "uinput support");
|
|
};
|
|
|
|
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"
|
|
'';
|
|
};
|
|
}
|