perso-desktop: Fix amdgpu fail with latest linux-firmware
All checks were successful
check / check (push) Successful in 33s

This commit is contained in:
Florian RICHER 2025-06-26 17:52:29 +02:00
parent 9b01440506
commit d9e46a5e24
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -72,4 +72,21 @@
PasswordAuthentication = false; PasswordAuthentication = false;
}; };
}; };
nixpkgs.overlays = [
(self: super: {
linux-firmware = super.linux-firmware.overrideAttrs (old: rec {
pname = "linux-firmware";
version = "20250625";
src = super.fetchFromGitLab {
owner = "kernel-firmware";
repo = "linux-firmware";
rev = "cbbce56d6dcc1ec8fb485dfb92c68cb9acd51410";
hash = "sha256-7XN2g4cnHLnICs/ynt8dCpTJbbBkbOdtRm3by/XrDps=";
};
});
})
];
warnings = [ "linux-firmware pinned to 20250625. Remove it when https://github.com/NixOS/nixpkgs/issues/419838 is fixed." ];
} }