NVIDIA: Difference between revisions

imported>Dustsucker
m add: fixing non autoloading kernel module help
imported>Brogolem35
Fix typo and the semicolons
Line 297: Line 297:
If you encounter the Problem of booting to The Terminal you might try adding the nvidia kernel modul manually with:
If you encounter the Problem of booting to The Terminal you might try adding the nvidia kernel modul manually with:
<syntaxHighlight lang="nix">
<syntaxHighlight lang="nix">
boot.intrd.kernelModules = [ "nvidia" ]
boot.initrd.kernelModules = [ "nvidia" ];
boot.extraModulePackages = [ config.boot.kernelPackages.nvidia_x11 ]
boot.extraModulePackages = [ config.boot.kernelPackages.nvidia_x11 ];
</syntaxHighlight>
</syntaxHighlight>