Nixos-rebuild fails with kernel 6.14 on nixos-24.11 because wb-broadcom-sta-6.30 cannot be build, cf. Nixos-rebuild fails on nixos-24.11
So I am still using Kernel 6.13.
The package description NixOS Search says that wb-broadcom-sta-6.30 is needed for some Broadcom’s wireless cards.
Since my desktop is connected using an Ethernet Cable.
Would it thus not help do disable Wireless completely?
I hope that the module will not be needed and its build not attempted.
How can I define not to use any wifi/wireless network?
Voilà part of my configuration:
networking = {
hostName = prop.hostName;
# Enable networking
networkmanager = {
dns = "systemd-resolved";
enable = true;
wifi.powersave = false;
};
};
Thanks for your help.