mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
15 lines
331 B
Nix
15 lines
331 B
Nix
{ config, ... }:
|
|
|
|
/*
|
|
This hardware profile corresponds to the Lenovo IdeaPad v330-14ARR.
|
|
*/
|
|
|
|
{
|
|
deploy.profile.hardware.v330-14arr = true;
|
|
|
|
boot.initrd.availableKernelModules =
|
|
[ "xhci_pci" "ahci" "usb_storage" "sd_mod" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ ];
|
|
boot.extraModulePackages = [ ];
|
|
}
|