fix: bump ath11k firmware due to potential suspend issues

This commit is contained in:
Adam Stephens 2024-02-05 09:09:25 -05:00
parent bb1e57a557
commit 66bc91c89d
No known key found for this signature in database

View file

@ -94,13 +94,28 @@ in
}; };
nixpkgs.overlays = [ nixpkgs.overlays = [
(final: super: { (_: super: {
linux-firmware =
let
source = {
revision = "5217b76bed90ae86d5f3fe9a5f4e2301868cdd02";
sourceHash = "sha256-Te5AioCoN2LuUwxuxjoarpihaZQ1uO/FRfVrkNVGwEQ=";
outputHash = "sha256-F1f4gcGU3ATnDEFoHipS25qqBD8XsKfrCDzaFbNWgXI=";
};
in
super.linux-firmware.overrideAttrs (
_: {
version = "20240205-unstable";
src = pkgs.fetchzip {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${source.revision}.tar.gz";
hash = source.sourceHash;
};
outputHash = source.outputHash;
}
);
# don't try and use zfs # don't try and use zfs
zfs = super.zfs.overrideAttrs ( zfs = super.zfs.overrideAttrs (_: { meta.platforms = [ ]; });
_: {
meta.platforms = [ ];
}
);
# allow missing modules # allow missing modules
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; }); makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });