updated stuff

This commit is contained in:
2021-05-22 11:35:23 +05:30
parent dadc9192ff
commit 5364156d58
9 changed files with 66 additions and 13 deletions

18
marisa/boot.nix Executable file
View File

@@ -0,0 +1,18 @@
{config, ...}:
{
boot = {
initrd.availableKernelModules = [ "xhci_pci" "usb_storage" "usbhid" "uas"];
initrd.kernelModules = [ ];
kernelModules = [ ];
extraModulePackages = [ ];
loader = {
grub.enable = false;
generic-extlinux-compatible.enable= true;
raspberryPi= {
version = 4;
firmwareConfig = "dtparam=sd_poll_once=on";
enable = true;
};
};
};
}