Merge pull request #123 from rycee/thinkpad-x1-extreme-gen2
thinkpad/x1-extreme/gen2: add module
This commit is contained in:
commit
f08177ef66
|
@ -25,7 +25,7 @@ imports = [
|
||||||
See code for all available configurations.
|
See code for all available configurations.
|
||||||
|
|
||||||
| Model | Path |
|
| Model | Path |
|
||||||
| --------------------------------- | -------------------------------------------- |
|
| --------------------------------- | -------------------------------------------------- |
|
||||||
| [Acer Aspire 4810T][] | `<nixos-hardware/acer/aspire/4810t>` |
|
| [Acer Aspire 4810T][] | `<nixos-hardware/acer/aspire/4810t>` |
|
||||||
| Airis N990 | `<nixos-hardware/airis/n990>` |
|
| Airis N990 | `<nixos-hardware/airis/n990>` |
|
||||||
| Apple MacBook Air 4,X | `<nixos-hardware/apple/macbook-air/4>` |
|
| Apple MacBook Air 4,X | `<nixos-hardware/apple/macbook-air/4>` |
|
||||||
|
@ -54,7 +54,8 @@ See code for all available configurations.
|
||||||
| Lenovo ThinkPad X250 | `<nixos-hardware/lenovo/thinkpad/x250>` |
|
| Lenovo ThinkPad X250 | `<nixos-hardware/lenovo/thinkpad/x250>` |
|
||||||
| [Lenovo ThinkPad X260][] | `<nixos-hardware/lenovo/thinkpad/x260>` |
|
| [Lenovo ThinkPad X260][] | `<nixos-hardware/lenovo/thinkpad/x260>` |
|
||||||
| Lenovo ThinkPad X270 | `<nixos-hardware/lenovo/thinkpad/x270>` |
|
| Lenovo ThinkPad X270 | `<nixos-hardware/lenovo/thinkpad/x270>` |
|
||||||
| [Lenovo ThinkPad X1 (6th Gen)][] | `<nixos-hardware/lenovo/thinkpad/x1/6th-gen>`|
|
| [Lenovo ThinkPad X1 (6th Gen)][] | `<nixos-hardware/lenovo/thinkpad/x1/6th-gen>` |
|
||||||
|
| Lenovo ThinkPad X1 Extreme Gen 2 | `<nixos-hardware/lenovo/thinkpad/x1-extreme/gen2>` |
|
||||||
| [Microsoft Surface Pro 3][] | `<nixos-hardware/microsoft/surface-pro/3>` |
|
| [Microsoft Surface Pro 3][] | `<nixos-hardware/microsoft/surface-pro/3>` |
|
||||||
| PC Engines APU | `<nixos-hardware/pcengines/apu>` |
|
| PC Engines APU | `<nixos-hardware/pcengines/apu>` |
|
||||||
| [Raspberry Pi 2][] | `<nixos-hardware/raspberry-pi/2>` |
|
| [Raspberry Pi 2][] | `<nixos-hardware/raspberry-pi/2>` |
|
||||||
|
|
8
lenovo/thinkpad/x1-extreme/default.nix
Normal file
8
lenovo/thinkpad/x1-extreme/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../.
|
||||||
|
../../../common/cpu/intel
|
||||||
|
../../../common/pc/laptop/acpi_call.nix
|
||||||
|
../../../common/pc/laptop/ssd
|
||||||
|
];
|
||||||
|
}
|
47
lenovo/thinkpad/x1-extreme/gen2/default.nix
Normal file
47
lenovo/thinkpad/x1-extreme/gen2/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{ config, lib, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../.
|
||||||
|
../../../../common/pc/laptop/cpu-throttling-bug.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
# Fixes an issue with incorrect battery reporting. See
|
||||||
|
# https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_X1_Extreme_(Gen_2)#Invalid_Stats_Workaround
|
||||||
|
boot.initrd.availableKernelModules = [ "battery" ];
|
||||||
|
|
||||||
|
# New ThinkPads have a different TrackPoint manufacturer/name.
|
||||||
|
# See also https://certification.ubuntu.com/catalog/component/input/5313/input%3ATPPS/2ElanTrackPoint/
|
||||||
|
hardware.trackpoint.device = "TPPS/2 Elan TrackPoint";
|
||||||
|
|
||||||
|
# Since the HDMI port is connected to the NVIDIA card.
|
||||||
|
hardware.bumblebee.connectDisplay = true;
|
||||||
|
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(self: super: {
|
||||||
|
bumblebee = super.bumblebee.override {
|
||||||
|
extraNvidiaDeviceOptions = ''
|
||||||
|
Option "AllowEmptyInitialConfiguration"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
services.xserver = mkMerge [
|
||||||
|
{
|
||||||
|
# Set the right DPI. xdpyinfo says the screen is 508×285 mm but
|
||||||
|
# it actually is 344×193 mm.
|
||||||
|
monitorSection = ''
|
||||||
|
DisplaySize 344 193
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
|
# To support intel-virtual-output when using Bumblebee.
|
||||||
|
(mkIf config.hardware.bumblebee.enable {
|
||||||
|
deviceSection = ''Option "VirtualHeads" "1"'';
|
||||||
|
videoDrivers = [ "intel" ];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue