20 lines
431 B
Nix
20 lines
431 B
Nix
{ ... }:
|
|
{
|
|
boot.initrd.kernelModules = [
|
|
"xhci_pci"
|
|
"uas"
|
|
"sd_mod"
|
|
];
|
|
|
|
services.tlp.settings.DISK_DEVICES = "sda";
|
|
|
|
# By default, this host runs on an external SSD attached to himalia...
|
|
imports = [ ../../himalia/hardware ];
|
|
|
|
# ...but it can also run attached to a SAS-provided laptop.
|
|
specialisation.sas.configuration = {
|
|
disabledModules = [ ../../himalia/hardware ];
|
|
imports = [ ./sas ];
|
|
};
|
|
}
|