1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 18:43:34 +02:00
nixos-hardware/microsoft/surface/surface-laptop-amd/default.nix

21 lines
599 B
Nix
Raw Normal View History

2023-01-11 00:11:44 +01:00
{ ... }:
# This module is intended to support the Surface Laptop range, specifically those with AMD CPUs.
# It's expected it will work equally well on many other Surface models, but they may need further
# config changes to work well.
2023-01-11 00:11:44 +01:00
{
imports = [
../common
../../../common/pc
../../../common/pc/ssd
../../../common/cpu/amd
../../../common/cpu/amd/pstate.nix
../../../common/gpu/amd
];
# Note: The IPTS module is not often required on devices with Surface Laptop 3 (AMD).
microsoft-surface.ipts.enable = true;
microsoft-surface.surface-control.enable = true;
}