mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-06 01:48:50 +08:00
Merge pull request #1595 from spacifici/dell_precision_7520_stable_nvidia_driver
dell/precision/7520: use stable nvidia driver (not legacy)
This commit is contained in:
@@ -61,7 +61,10 @@ Then use `fwupdmgr` to perform updates
|
|||||||
|
|
||||||
## Nvidia Driver
|
## Nvidia Driver
|
||||||
|
|
||||||
The choice of the `legacy_390` driver is based on looking for PCI Device ID `10de:1436`. On the [nvidia driver site](https://www.nvidia.com/en-us/drivers/unix/legacy-gpu/) which should indicate the
|
The choice of the `stable` driver is based on looking at the family of the card on [nouveau wiki's code names page](https://nouveau.freedesktop.org/CodeNames.html) obtained with:
|
||||||
driver, the exact device isn't listed. However, we can see
|
|
||||||
[here](https://linux-hardware.org/?id=pci:10de-1436-103c-1909) has nvidia driver "375.82 and newer" listed. Since the
|
```bash
|
||||||
newest nvidia drivers don't support legacy devices, the closest version newer than 375.82 was chosen.
|
$ lspci -k -d ::03xx
|
||||||
|
```
|
||||||
|
|
||||||
|
Both `Quadro M2200 Mobile (GM206GLM)` and `Quadro M1200 Mobile (GM107GLM)` belong to the **Maxwell** family which is still supported by the stable driver.
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
enable32Bit = lib.mkDefault true;
|
enable32Bit = lib.mkDefault true;
|
||||||
};
|
};
|
||||||
nvidia = {
|
nvidia = {
|
||||||
package = config.boot.kernelPackages.nvidiaPackages.legacy_390;
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
nvidiaSettings = lib.mkDefault true;
|
nvidiaSettings = lib.mkDefault true;
|
||||||
modesetting.enable = lib.mkDefault true;
|
modesetting.enable = lib.mkDefault true;
|
||||||
open = lib.mkDefault false;
|
open = lib.mkDefault false;
|
||||||
|
|||||||
Reference in New Issue
Block a user