From ab143cf59d5c802292c94d5ad218d70f7d434f99 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Mon, 8 Jan 2024 18:53:08 +0800 Subject: [PATCH] nixos: core: boot: simplify --- nixos/profiles/common/core/default.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/nixos/profiles/common/core/default.nix b/nixos/profiles/common/core/default.nix index 2957ff2..7c2a528 100644 --- a/nixos/profiles/common/core/default.nix +++ b/nixos/profiles/common/core/default.nix @@ -31,13 +31,7 @@ ### Boot boot.initrd.systemd.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.loader.systemd-boot = { - enable = lib.mkDefault true; # mkDefault for Lanzaboote - editor = false; # Disabled for security - ### Utilities - #netbootxyz.enable = true; - #memtest86.enable = true; - }; + boot.loader.systemd-boot.enable = lib.mkDefault true; # mkDefault for Lanzaboote ### Default Programs environment.defaultPackages = [];