mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-10-31 16:19:42 +01:00
11 lines
213 B
Nix
11 lines
213 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
../../common/pc/laptop
|
|
../../common/pc/laptop/ssd
|
|
];
|
|
|
|
# Needed to have the keyboard working during the initrd sequence
|
|
boot.initrd.availableKernelModules = [ "battery" ];
|
|
|
|
}
|