From 5fe42f59007bba89e36cd62aeeef86fb0ff5d3a6 Mon Sep 17 00:00:00 2001 From: Sokhibjon Orzikulov Date: Wed, 12 Jun 2024 05:50:26 +0500 Subject: [PATCH] device => devices nodev --- robot.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/robot.nix b/robot.nix index def2bf9..e57f974 100644 --- a/robot.nix +++ b/robot.nix @@ -10,12 +10,17 @@ }; boot.loader = { - efi.canTouchEfiVariables = true; + systemd-boot.enable = false; + + efi = { + canTouchEfiVariables = true; + efiSysMountPoint = "/boot/efi"; + }; grub = { enable = true; efiSupport = true; - device = "nodev"; + devices = ["nodev"]; }; };