diff options
author | Vincent Ambo <mail@tazj.in> | 2020-06-20T17·38+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-06-20T22·27+0000 |
commit | a8e25bc9d37d11713eede1bd737581da8f8607de (patch) | |
tree | 36d4f6c19036b327978d994fd52f13832aced54c /users | |
parent | 3b05be2fd0c0035977dbac731c26651b9ff3e373 (diff) |
feat(3p/kernelPatches): Add kernel audio patch for ASUS TRX40 Pro r/1048
Without this patch, this board is not included in the pin map overrides and audio basically doesn't work. With this patch, the audio still doesn't work, but it can at least correctly detect what is and isn't plugged in - so that's progress. Change-Id: I66ca7d7a1e0e25a0212b9659381875ad4c590ffc Reviewed-on: https://cl.tvl.fyi/c/depot/+/542 Reviewed-by: lukegb <lukegb@tvl.fyi>
Diffstat (limited to 'users')
-rw-r--r-- | users/tazjin/nixos/frog/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/users/tazjin/nixos/frog/default.nix b/users/tazjin/nixos/frog/default.nix index a88763b58165..f0c9cd6e0ddf 100644 --- a/users/tazjin/nixos/frog/default.nix +++ b/users/tazjin/nixos/frog/default.nix @@ -34,6 +34,10 @@ in depot.lib.fix(self: { kernel.sysctl = { "kernel.perf_event_paranoid" = 1; }; + + kernelPatches = [ + depot.third_party.kernelPatches.trx40_usb_audio + ]; }; hardware = { @@ -233,6 +237,7 @@ in depot.lib.fix(self: { openssl pass pavucontrol + pciutils pinentry pinentry-emacs pwgen @@ -245,6 +250,7 @@ in depot.lib.fix(self: { tokei tree unzip + usbutils vlc xclip yubico-piv-tool |