mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			229 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			229 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ nixos, lib, pkgs, config, stdenv, ... }:
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../l13
 | 
						|
  ];
 | 
						|
 | 
						|
  # automatic screen orientation
 | 
						|
  hardware.sensor.iio.enable = true;
 | 
						|
 | 
						|
  services.xserver.wacom.enable = lib.mkDefault config.services.xserver.enable;
 | 
						|
}
 |