Add specialisation for Surface Laptop (AMD)
This commit is contained in:
parent
1dc7781973
commit
f67688dcf5
|
@ -195,6 +195,7 @@ See code for all available configurations.
|
|||
| [MSI GL62/CX62](msi/gl62) | `<nixos-hardware/msi/gl62>` |
|
||||
| [Microsoft Surface Go](microsoft/surface/surface-go) | `<nixos-hardware/microsoft/surface/surface-go>` |
|
||||
| [Microsoft Surface Pro (Intel)](microsoft/surface/surface-pro-intel)| `<nixos-hardware/microsoft/surface/surface-pro-intel>`|
|
||||
| [Microsoft Surface Laptop (AMD)](microsoft/surface/surface-laptop-amd)| `<nixos-hardware/microsoft/surface/surface-laptop-amd>`|
|
||||
| [Microsoft Surface Range (Common Modules)](microsoft/surface/common)| `<nixos-hardware/microsoft/surface/common>` |
|
||||
| [Microsoft Surface Pro 3](microsoft/surface-pro/3) | `<nixos-hardware/microsoft/surface-pro/3>` |
|
||||
| [Omen en00015p](omen/en00015p) | `<nixos-hardware/omen/en00015p>` |
|
||||
|
|
|
@ -132,6 +132,7 @@
|
|||
letsnote-cf-lx4 = import ./panasonic/letsnote/cf-lx4;
|
||||
microsoft-surface-go = import ./microsoft/surface/surface-go;
|
||||
microsoft-surface-pro-intel = import ./microsoft/surface/surface-pro-intel;
|
||||
microsoft-surface-laptop-amd = import ./microsoft/surface/surface-laptop-amd;
|
||||
microsoft-surface-common = import ./microsoft/surface/common;
|
||||
microsoft-surface-pro-3 = import ./microsoft/surface-pro/3;
|
||||
msi-gs60 = import ./msi/gs60;
|
||||
|
|
22
microsoft/surface/surface-laptop-amd/default.nix
Normal file
22
microsoft/surface/surface-laptop-amd/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, ... }:
|
||||
|
||||
# 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.
|
||||
|
||||
let
|
||||
inherit (lib) mkDefault;
|
||||
in {
|
||||
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;
|
||||
}
|
Loading…
Reference in a new issue