about summary refs log tree commit diff
path: root/modules/nixos-hardware/lenovo/thinkpad/x13-yoga/default.nix
blob: 2653910d44b419ee1cc4411ec8b91321dee57c83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, ... }: {
  imports = [
    ../.
    ../../../common/cpu/intel
    ../../../common/pc/laptop/acpi_call.nix
    ../../../common/pc/laptop/ssd
  ];

  # automatic screen orientation
  hardware.sensor.iio.enable = true;

  services.xserver.wacom.enable = lib.mkDefault config.services.xserver.enable;
}