From 471fa64f3fb63498de579be4a14e2551063ea2a6 Mon Sep 17 00:00:00 2001 From: demenik Date: Mon, 1 Dec 2025 19:43:42 +0100 Subject: [PATCH] fix: Remove grub --- nixos/full.nix | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/nixos/full.nix b/nixos/full.nix index 11cba33..0ccaf69 100644 --- a/nixos/full.nix +++ b/nixos/full.nix @@ -25,15 +25,7 @@ users.users.${user}.shell = pkgs.zsh; boot = { - loader = { - efi.canTouchEfiVariables = true; - grub = { - enable = true; - device = "nodev"; - efiSupport = true; - }; - }; - + loader.efi.canTouchEfiVariables = true; kernelPackages = pkgs.linuxPackages_latest; };