mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
11 lines
228 B
Nix
11 lines
228 B
Nix
|
{ ... }: {
|
||
|
imports = [
|
||
|
../.
|
||
|
../../../common/pc/laptop/acpi_call.nix
|
||
|
../../../common/pc/laptop/ssd
|
||
|
];
|
||
|
|
||
|
# Somehow psmouse does not load automatically on boot for me
|
||
|
boot.initrd.kernelModules = [ "psmouse" ];
|
||
|
}
|