You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
480 B
Nix
23 lines
480 B
Nix
# all hardware for *installed* systems
|
|
|
|
{ modulesPath, ... }:
|
|
{
|
|
|
|
imports = [
|
|
# from nixpkgs
|
|
"${modulesPath}/profiles/all-hardware.nix" # all hardware, just so installers from USB / etc. can run
|
|
# from here
|
|
./common.nix
|
|
./pveGuestHwSupport.nix # also for guest agent, serial out, ...
|
|
];
|
|
|
|
config = {
|
|
boot.initrd.availableKernelModules = [
|
|
# to find boot drive
|
|
"mmc_block" # e.g. Surface 3
|
|
"sdhci-acpi" # e.g. Surface 3
|
|
];
|
|
};
|
|
|
|
}
|