18 lines
353 B
Nix
18 lines
353 B
Nix
|
|
{
|
||
|
|
den.aspects = {
|
||
|
|
antimicrox = {
|
||
|
|
homeManager =
|
||
|
|
{ pkgs, ... }:
|
||
|
|
{
|
||
|
|
home.packages = [
|
||
|
|
pkgs.antimicrox
|
||
|
|
];
|
||
|
|
};
|
||
|
|
nixos = {
|
||
|
|
services.udev.extraRules = ''
|
||
|
|
SUBSYSTEM=="misc", KERNEL=="uinput", OPTIONS+="static_node=uinput", TAG+="uaccess"
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|