Files
nix/modules/hosts/daidalos/hardware.nix
T
2026-04-22 20:34:53 +02:00

21 lines
405 B
Nix

{ lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [
"pcie_brcmstb"
"reset-raspberrypi"
"usbhid"
"usb_storage"
"vc4"
"xhci_pci"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
}