From 330971c80653721d174d94e902054975d8d922dc Mon Sep 17 00:00:00 2001 From: Mr Hedgehog Date: Wed, 4 May 2022 06:43:28 -0400 Subject: [PATCH] Update bootloader config again --- hosts/marvin/bootloader.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hosts/marvin/bootloader.nix b/hosts/marvin/bootloader.nix index a95811b..58752df 100644 --- a/hosts/marvin/bootloader.nix +++ b/hosts/marvin/bootloader.nix @@ -5,13 +5,13 @@ }: { boot = { loader = { - systemd-boot.enable = true; - systemd-boot.configurationLimit = 5; - efi.canTouchEfiVariables = false; - # grub.enable = true; - # grub.device = "/dev/nvme0n1"; - # grub.efiSupport = false; - # grub.configurationLimit = 5; + # systemd-boot.enable = true; + # systemd-boot.configurationLimit = 5; + # efi.canTouchEfiVariables = false; + grub.enable = true; + grub.device = "/dev/nvme0n1"; + grub.efiSupport = false; + grub.configurationLimit = 5; }; kernelPackages = pkgs.linuxPackages_latest; supportedFilesystems = lib.mkForce ["btrfs" "vfat" "f2fs"];