mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 17:51:56 -05:00
Aly Raffauf
28b459a615
Some checks are pending
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
23 lines
460 B
Nix
23 lines
460 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../../common/bluetooth
|
|
../../../common/cpu/intel
|
|
../../../common/gpu/intel
|
|
../../../common/laptop
|
|
../../../common/laptop/intel-cpu.nix
|
|
../../../common/ssd
|
|
../common.nix
|
|
];
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = ["nvme" "sd_mod" "thunderbolt" "usb_storage" "xhci_pci"];
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
};
|
|
|
|
hardware.enableAllFirmware = true;
|
|
}
|