try systemd-boot instead of grub for flame

This commit is contained in:
Noah Masur
2025-07-02 10:47:19 -06:00
parent 227e6a68af
commit 192e08a9d9

View File

@ -72,18 +72,20 @@ rec {
# fsType = "vfat";
# };
boot.loader.efi.canTouchEfiVariables = false;
boot.loader.grub = {
device = "nodev";
splashImage = null;
extraConfig = ''
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal_input --append serial
terminal_output --append serial
'';
efiInstallAsRemovable = true;
efiSupport = true;
};
# boot.loader.efi.canTouchEfiVariables = false;
# boot.loader.grub = {
# device = "nodev";
# splashImage = null;
# extraConfig = ''
# serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
# terminal_input --append serial
# terminal_output --append serial
# '';
# efiInstallAsRemovable = true;
# efiSupport = true;
# };
boot.loader.systemd-boot.enable = true;
# https://docs.oracle.com/en-us/iaas/Content/Compute/Tasks/configuringntpservice.htm#Configuring_the_Oracle_Cloud_Infrastructure_NTP_Service_for_an_Instance
networking.timeServers = [ "169.254.169.254" ];