mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 02:03:21 +01:00
039cf97368
This is part of merging all hardware-specific config into one module.
12 lines
240 B
Nix
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"
|
|
'';
|
|
}
|