"Dpdk driver has been renamed to dpdk-kmods"

I’m trying to switch my kernel to the unstable channel to get access to the latest nvidia drivers. The relevant part of my configuration.nix is below. When I run this, however, I get the message “Dpdk driver has been renamed to dpdk-kmods” with no other output, and the rebuild fails. Has anyone run into this before?

  nixpkgs.config.packageOverrides = pkgs: {
    unstable = nixos-unstable;
    linuxPackages_latest = newlinuxlatest;
    nvidia_x11 = nixos-unstable.nvidia_x11;

  };

  boot.kernelPackages = newlinuxlatest;

This was an error on my side. Please make sure to upgrade to the latest channel revision to solve this issue.The issue was solved here: linuxPackages.dpdk: remove alias by Mic92 · Pull Request #129071 · NixOS/nixpkgs · GitHub

1 Like

Awesome! Thanks for the quick response.