mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
12 lines
353 B
Nix
12 lines
353 B
Nix
{ 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.initrd.kernelModules = [ "psmouse" ];
|
|
}
|