nix-config/modules/piper.nix
Donovan Glover 039cf97368
meta: Merge udev with piper
This is part of merging all hardware-specific config into one module.
2024-04-03 06:29:07 -04:00

12 lines
240 B
Nix

{ pkgs, ... }:
{
services.ratbagd.enable = true;
environment.systemPackages = [ pkgs.piper ];
services.udev.extraRules = ''
KERNEL=="event*", ATTRS{name}=="AT Translated Set 2 keyboard", ENV{LIBINPUT_IGNORE_DEVICE}="1"
'';
}