reNixos/s0meMiniPC-nix/boot/initrd.nix
s0me1newithhand7s be4f7798f9
s0mePC-nix: init
Signed-off-by: s0me1newithhand7s <117505144+s0me1newithhand7s@users.noreply.github.com>
2025-08-25 00:18:32 +03:00

27 lines
550 B
Nix

{lib, ...}: {
boot = {
initrd = {
availableKernelModules = [
"nvme"
"xhci_pci"
"ahci"
"usbhid"
"usb_storage"
"sd_mod"
"btrfs"
];
supportedFilesystems = {
vfat = true;
btrfs = true;
zfs = lib.mkForce true;
};
systemd = {
enable = true;
};
verbose = false;
};
};
}