15 lines
262 B
Nix
15 lines
262 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
# TASK: new device
|
||
|
hardware.opinionatedDisk = {
|
||
|
enable = true;
|
||
|
encrypted = false;
|
||
|
diskId = "ata-KINGSTON_SV100S2128G_08BAB0020855";
|
||
|
};
|
||
|
|
||
|
# boot.initrd.availableKernelModules = stage1Modules;
|
||
|
boot.extraModprobeConfig = ''
|
||
|
'';
|
||
|
}
|