forked from NixOS/nixos-hardware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NixOS#253 from NixOS/thinkpad-x13
add lenovo-thinkpad-x13
- Loading branch information
Showing
3 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ config, lib, ... }: { | ||
# Reference to hardware: https://certification.ubuntu.com/hardware/202004-27844 | ||
imports = [ | ||
../. | ||
../../../common/cpu/intel | ||
../../../common/pc/laptop/acpi_call.nix | ||
../../../common/pc/laptop/ssd | ||
]; | ||
|
||
# Somehow psmouse does not load automatically on boot for me | ||
boot.kernelModules = [ "psmouse" ]; | ||
} |