Add boot loader

This commit is contained in:
Joseph Hanson 2024-05-10 20:39:49 -05:00
parent e64137c3ab
commit 71ac75dde2

View file

@ -8,6 +8,8 @@
}: {
imports = [ ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "virtio_scsi" "usbhid" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
@ -26,4 +28,4 @@
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
}
}