Gaming: patch sdl to ignore keychron things

This commit is contained in:
Toast 2025-12-05 23:59:26 +01:00
parent 8b86b1ccc0
commit eb5ebb056c
2 changed files with 24 additions and 1 deletions

View file

@ -1,6 +1,16 @@
{...}: {
{pkgs, ...}: {
imports = [
./programs
./services
];
system.replaceDependencies.replacements = [
{
oldDependency = pkgs.sdl3;
newDependency = pkgs.sdl3.overrideAttrs {
patches = [
./sdl-keychron-blacklist.patch
];
};
}
];
}