From 172d3c87850c18fb86215de3b9e581af80370664 Mon Sep 17 00:00:00 2001 From: Sokhibjon Orzikulov Date: Sun, 9 Jun 2024 23:04:20 +0500 Subject: [PATCH] add uefi support to server init --- robot.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/robot.nix b/robot.nix index 683bc9e..e433eac 100644 --- a/robot.nix +++ b/robot.nix @@ -3,7 +3,13 @@ ./disk-config.nix ]; - boot.loader.grub.enable = true; + boot.loader = { + efi.canTouchEfiVariables = true; + grub = { + enable = true; + efiSupport = true; + }; + }; services.openssh = { enable = true;