reNixos/isla/boot/initrd.nix
s0me1newithhand7s 1a891252ab isla: upstream
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-03-25 18:49:27 +03:00

37 lines
596 B
Nix

_: {
boot = {
initrd = {
availableKernelModules = [
"ehci_pci"
"ahci"
"usbhid"
"usb_storage"
"sd_mod"
"sdhci_pci"
"btrfs"
"battery"
"thinkpad_acpi"
"cryptd"
];
supportedFilesystems = {
vfat = true;
btrfs = true;
};
luks = {
devices = {
cryptroot = {
device = "/dev/disk/by-id/ata-ST92503010AS_5YH0CJFL-part2";
};
};
};
systemd = {
enable = true;
};
verbose = false;
};
};
}