mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-12 22:19:40 +01:00
16 lines
352 B
Nix
16 lines
352 B
Nix
|
{ nixos, lib, pkgs, config, stdenv, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
../.
|
||
|
../../../common/cpu/intel
|
||
|
../../../common/pc/laptop/acpi_call.nix
|
||
|
];
|
||
|
|
||
|
services.throttled.enable = lib.mkDefault true;
|
||
|
|
||
|
# automatic screen orientation
|
||
|
hardware.sensor.iio.enable = true;
|
||
|
|
||
|
services.xserver.wacom.enable = lib.mkDefault config.services.xserver.enable;
|
||
|
}
|