nix-config/modules/piper.nix

12 lines
240 B
Nix
Raw Normal View History

2023-06-22 17:13:46 +02:00
{ pkgs, ... }:
{
2023-05-17 17:51:52 +02:00
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"
'';
2023-05-17 17:51:52 +02:00
}