From e4e769a7adaaa287cba1de8f04f04367c8c16d84 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 9 Dec 2024 15:25:25 -0800 Subject: fix misconfiguration of the bootloader --- nix/machines/vm-aarch64/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'nix/machines/vm-aarch64') diff --git a/nix/machines/vm-aarch64/default.nix b/nix/machines/vm-aarch64/default.nix index 302a80c..b1444cc 100644 --- a/nix/machines/vm-aarch64/default.nix +++ b/nix/machines/vm-aarch64/default.nix @@ -1,5 +1,12 @@ { ... }: { imports = [ ./hardware.nix ../vm-shared.nix ]; + # Use the systemd-boot EFI boot loader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + networking.hostName = "vm-aarch64"; + + # enable the guest agent + services.qemuGuest.enable = true; } -- cgit v1.2.3