From 604b528dd33ad9700c3c430da731d973eb9f3506 Mon Sep 17 00:00:00 2001 From: Vegard Bieker Matthey Date: Sat, 24 Jan 2026 22:04:54 +0100 Subject: [PATCH] use grub as bootloader because of no uefi support --- hosts/gluttony/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/gluttony/configuration.nix b/hosts/gluttony/configuration.nix index 8033e01..9c31cd8 100644 --- a/hosts/gluttony/configuration.nix +++ b/hosts/gluttony/configuration.nix @@ -11,6 +11,15 @@ ]; systemd.network.enable = lib.mkForce false; + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + + boot.loader = { + systemd-boot.enable = false; # no uefi support on this device + grub.device = "/dev/sda"; + grub.enable = true; + }; + boot.tmp.cleanOnBoot = true; + networking = let hostConf = values.hosts.gluttony; -- 2.52.0