mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	framework/16-inch: moved out of the CPU folder
as it doesn't only define configuration for the CPU
This commit is contained in:
		
							
								
								
									
										27
									
								
								framework/16-inch/common/default.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								framework/16-inch/common/default.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,27 @@
 | 
			
		||||
{ lib, pkgs, ... }: {
 | 
			
		||||
  imports = [
 | 
			
		||||
    ../../../common/pc/laptop
 | 
			
		||||
    ../../../common/pc/laptop/ssd
 | 
			
		||||
  ];
 | 
			
		||||
 | 
			
		||||
  # Fix TRRS headphones missing a mic
 | 
			
		||||
  # https://community.frame.work/t/headset-microphone-on-linux/12387/3
 | 
			
		||||
  boot.extraModprobeConfig = lib.mkIf (lib.versionOlder pkgs.linux.version "6.6.8") ''
 | 
			
		||||
    options snd-hda-intel model=dell-headset-multi
 | 
			
		||||
  '';
 | 
			
		||||
 | 
			
		||||
  # For fingerprint support
 | 
			
		||||
  services.fprintd.enable = lib.mkDefault true;
 | 
			
		||||
 | 
			
		||||
  # Custom udev rules
 | 
			
		||||
  services.udev.extraRules = ''
 | 
			
		||||
    # Ethernet expansion card support
 | 
			
		||||
    ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="0bda", ATTR{idProduct}=="8156", ATTR{power/autosuspend}="20"
 | 
			
		||||
  '';
 | 
			
		||||
 | 
			
		||||
  # Needed for desktop environments to detect/manage display brightness
 | 
			
		||||
  hardware.sensor.iio.enable = lib.mkDefault true;
 | 
			
		||||
 | 
			
		||||
  # Enable keyboard customization
 | 
			
		||||
  hardware.keyboard.qmk.enable = lib.mkDefault true;
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user