mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
ba8294c0a1
These modules only included gpu configuration, so belong in that location.
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../../common/gpu/intel/kaby-lake
|
|
../../../common/pc/laptop
|
|
../../../common/pc/laptop/ssd
|
|
../../../common/gpu/nvidia
|
|
];
|
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
|
|
|
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc"];
|
|
|
|
boot = {
|
|
kernelModules = ["kvm-intel"];
|
|
blacklistedKernelModules = ["nouveau"];
|
|
};
|
|
boot.kernelParams = ["i915.modeset=1"];
|
|
|
|
hardware = {
|
|
graphics = {
|
|
enable = lib.mkDefault true;
|
|
enable32Bit = lib.mkDefault true;
|
|
};
|
|
nvidia = {
|
|
package = config.boot.kernelPackages.nvidiaPackages.legacy_390;
|
|
nvidiaSettings = lib.mkDefault true;
|
|
modesetting.enable = lib.mkDefault true;
|
|
open = lib.mkDefault false;
|
|
prime = {
|
|
intelBusId = "PCI:0:2:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
};
|
|
};
|
|
|
|
# Override the intel gpu driver setting imported above
|
|
environment.variables = {
|
|
VDPAU_DRIVER = lib.mkIf config.hardware.graphics.enable (lib.mkOverride 990 "nvidia");
|
|
};
|
|
|
|
services.thermald.enable = lib.mkDefault true;
|
|
|
|
# available cpufreq governors: performance powersave
|
|
# The powersave mode locks the cpu to a 900mhz frequency which is not ideal
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
|
}
|