9 lines
290 B
Nix
Executable file
9 lines
290 B
Nix
Executable file
{pkgs, ...}: {
|
|
boot.kernelModules = ["uinput"];
|
|
services.udev.extraRules = ''
|
|
KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess", OPTIONS+="static_node=uinput", GROUP="input", MODE="0660"
|
|
'';
|
|
environment.systemPackages = builtins.attrValues {
|
|
inherit (pkgs) kanata;
|
|
};
|
|
}
|