From 37e5b82417d6b73e476f4fcc9aa8854fecb5aea6 Mon Sep 17 00:00:00 2001 From: Sokhibjon Orzikulov Date: Wed, 12 Jun 2024 06:50:15 +0500 Subject: [PATCH] turn of grub and try systemd boot instead --- robot.nix | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/robot.nix b/robot.nix index 5a3e969..8393f38 100644 --- a/robot.nix +++ b/robot.nix @@ -10,17 +10,13 @@ }; boot.loader = { - systemd-boot.enable = false; - - efi = { - canTouchEfiVariables = true; - }; - - grub = { - enable = true; - efiSupport = true; - devices = ["nodev"]; - }; + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + # grub = { + # enable = true; + # efiSupport = true; + # devices = ["nodev"]; + # }; }; services.openssh = {