infra/module/aspect/software/software-gui/antimicrox.nix

18 lines
353 B
Nix
Raw Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
antimicrox = {
homeManager =
{ pkgs, ... }:
{
home.packages = [
pkgs.antimicrox
];
};
nixos = {
services.udev.extraRules = ''
SUBSYSTEM=="misc", KERNEL=="uinput", OPTIONS+="static_node=uinput", TAG+="uaccess"
'';
};
};
};
}