Skip to content
This repository has been archived by the owner on Aug 31, 2024. It is now read-only.

Latest commit

 

History

History
16 lines (14 loc) · 421 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 421 Bytes

A nix flake that builds numen.

To run this as a non-root user, you'll need to add a udev rule for dotool and make yourself a member of input in your Nix configuration:

services.udev.extraRules = ''
  KERNEL=="uinput", GROUP="input", MODE="0660", OPTIONS+="static_node=uinput"
'';
users.users.<user> = {
  extraGroups = [
    "input"
  ];
};