mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	The common/pc/laptop/ssd folder was apparently moved a level up and was replaced by a symlink to keep things working. We can consolidate this now.
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  lib,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel/kaby-lake
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/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";
 | 
						|
}
 |