-
-
Notifications
You must be signed in to change notification settings - Fork 767
Added Dell Precision 5570 #1535
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
VDPAU_DRIVER = lib.mkIf config.hardware.opengl.enable (lib.mkOverride 990 "nvidia"); | ||
}; | ||
|
||
hardware.enableRedistributableFirmware = lib.mkDefault true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We already do this in the undetected profile in nixos-generate-config:
hardware.enableRedistributableFirmware = lib.mkDefault true; |
nvidiaBusId = "PCI:1:0:0"; | ||
}; | ||
}; | ||
hardware.graphics.enable = lib.mkDefault true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might be worth considering enabling this on all laptops, but than we should do this consistently and not in some modules only:
hardware.graphics.enable = lib.mkDefault true; |
|
||
hardware.enableRedistributableFirmware = lib.mkDefault true; | ||
services.thermald.enable = lib.mkDefault true; | ||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We no longer do set those in nixpkgs, so maybe we shouldn't set it in nixos-hardware either: NixOS/nixpkgs@fb602e5
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; |
boot.initrd.availableKernelModules = [ | ||
"xhci_pci" | ||
"thunderbolt" | ||
"vmd" | ||
"nvme" | ||
"usb_storage" | ||
"rtsx_pci_sdmmc" | ||
]; | ||
boot.kernelModules = [ "kvm-intel" ]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nixos-generate-config already generates those:
boot.initrd.availableKernelModules = [ | |
"xhci_pci" | |
"thunderbolt" | |
"vmd" | |
"nvme" | |
"usb_storage" | |
"rtsx_pci_sdmmc" | |
]; | |
boot.kernelModules = [ "kvm-intel" ]; |
Description of changes
Add support for Dell Precision 5570
Things done
nixos-hardware
andimporting it via
<nixos-hardware>
or Flake input