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;