mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
18 lines
499 B
Nix
18 lines
499 B
Nix
{ ... }:
|
|
|
|
# This module is intended to support the Surface Pro range, specifically those with Intel CPUs.
|
|
# It's expected it will work equally well on many other Surface models, but they may need further
|
|
# config changes to work well.
|
|
|
|
{
|
|
imports = [
|
|
../common
|
|
../../../common/pc
|
|
../../../common/pc/ssd
|
|
# The Intel CPU module auto-includes Intel's GPU:
|
|
../../../common/cpu/intel
|
|
];
|
|
|
|
microsoft-surface.ipts.enable = true;
|
|
microsoft-surface.surface-control.enable = true;
|
|
}
|