mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 16:57:14 +08:00
11 lines
177 B
Nix
11 lines
177 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/pc/ssd
|
|
];
|
|
|
|
# Somehow psmouse does not load automatically on boot for me
|
|
boot.initrd.kernelModules = [ "psmouse" ];
|
|
}
|