This commit is contained in:
Henry Hiles 2024-08-11 21:22:49 -04:00
parent 26414dcb45
commit 697683aa53
6 changed files with 56 additions and 37 deletions

View file

@ -1 +1 @@
{environment.etc."launch-rl.bat".source = ./launch-rl.bat;}
{environment.etc."launch-rl.bat".source = ./launch-rl.bat;}

View file

@ -9,6 +9,7 @@
tldr
tuba
gimp
dart
heroic
aspell
muzika

View file

@ -0,0 +1,14 @@
{pkgs, ...}: {
boot.extraModulePackages = [
(pkgs.linuxKernel.packages.linux_zen.hid-tmff2.overrideAttrs
(prev: {
src = pkgs.fetchFromGitHub {
owner = "Henry-Hiles";
repo = "hid-tmff2";
rev = "5fee95681a0091e42ecd60731db7b797fcde9d81";
hash = "sha256-KD+NG/GR/K1PkBUkhUrob5KrHDM6IHBFmcNbByBW57g=";
fetchSubmodules = true;
};
}))
];
}