mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
16 lines
315 B
Nix
16 lines
315 B
Nix
{ pkgs, inputs', ... }:
|
|
{
|
|
services.udev.extraRules = ''
|
|
KERNEL=="uinput", GROUP="input", MODE="0660", OPTIONS+="static_node=uinput"
|
|
'';
|
|
users.users.main = {
|
|
extraGroups = [
|
|
"input"
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
inputs'.numen-nix.packages.${pkgs.stdenv.system}.default
|
|
];
|
|
}
|