nixos/clients/quadraticpc/wheel.nix
2025-08-24 19:10:14 -04:00

11 lines
265 B
Nix

{
pkgs,
config,
...
}: {
boot.blacklistedKernelModules = ["xpad"];
boot.extraModulePackages = [config.boot.kernelPackages.hid-tmff2];
environment.systemPackages = with pkgs; [oversteer linuxConsoleTools];
services.udev.packages = [pkgs.oversteer];
}