From 192e08a9d946cb302ab3ab24b8c542d066afcac6 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Wed, 2 Jul 2025 10:47:19 -0600 Subject: [PATCH] try systemd-boot instead of grub for flame --- hosts/aarch64-linux/flame/default.nix | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/hosts/aarch64-linux/flame/default.nix b/hosts/aarch64-linux/flame/default.nix index d846e08..f4fa824 100644 --- a/hosts/aarch64-linux/flame/default.nix +++ b/hosts/aarch64-linux/flame/default.nix @@ -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" ];