init pa600
This commit is contained in:
parent
1bba975a9d
commit
02bb843015
8 changed files with 187 additions and 0 deletions
26
nix/os/devices/steveej-pa600/hw.nix
Normal file
26
nix/os/devices/steveej-pa600/hw.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ ... }:
|
||||
|
||||
let
|
||||
stage1Modules = [
|
||||
"aesni_intel"
|
||||
"kvm-intel"
|
||||
"aes_x86_64"
|
||||
|
||||
"xhci_pci"
|
||||
"hxci_hcd"
|
||||
];
|
||||
|
||||
in
|
||||
{
|
||||
# TASK: new device
|
||||
hardware.opinionatedDisk = {
|
||||
enable = true;
|
||||
encrypted = true;
|
||||
diskId = "ata-TOSHIBA_MK1652GSX_Y8B9CL6XT";
|
||||
};
|
||||
|
||||
# boot.initrd.availableKernelModules = stage1Modules;
|
||||
boot.initrd.kernelModules = stage1Modules;
|
||||
boot.extraModprobeConfig = ''
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue