Install Kernel Modul ddcci-driver

Hello awesome Nix-Wizards

I try to install a kernel module called ddcci-driver.

I did it like so:

  boot.kernelModules = [ "kvm-intel" "ddcci-driver" ];

But it’s not showing up after a reboot when I “lsmod” in the terminal
Seems like this kernel module was not installed …
What did I do wrong?

That just enables it; it doesn’t install it. You need boot.extraModulePackages = [config.boot.kernelPackages.ddcci-driver]; (make sure you have config as a parameter at the top of your configuration.nix).

Note it’s currently broken on the latest kernel (6.5).

1 Like

thank you very much Elvish!