Installer configuration and baldur boot
This commit is contained in:
parent
fb2c2128d1
commit
44af181073
4 changed files with 67 additions and 72 deletions
|
|
@ -1,7 +1,17 @@
|
|||
{ pkgs, lib, ... }:
|
||||
with lib; {
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot = {
|
||||
growPartition = true;
|
||||
kernelParams = [ "console=ttyS0" "panic=1" "boot.panic_on_fail" ];
|
||||
initrd.kernelModules = [ "virtio_scsi" ];
|
||||
kernelModules = [ "virtio_pci" "virtio_net" ];
|
||||
loader = {
|
||||
grub.device = "/dev/vda";
|
||||
timeout = 0;
|
||||
grub.configurationLimit = 0;
|
||||
};
|
||||
};
|
||||
|
||||
# boot = {
|
||||
# # binfmt.emulatedSystems = [ "armv7l-linux" "aarch64-linux" ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue