Split out the bootloaders and have no default. Fuck you Grub
This commit is contained in:
parent
0738ea2b90
commit
0c78b13ceb
6 changed files with 11 additions and 14 deletions
|
@ -3,7 +3,6 @@
|
|||
imports = [ lanzaboote.nixosModules.lanzaboote ];
|
||||
|
||||
boot = lib.mkIf config.boot.lanzaboote.enable {
|
||||
loader.systemd-boot.enable = lib.mkForce false;
|
||||
lanzaboote.pkiBundle = "/etc/secureboot";
|
||||
};
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ ... }:
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
boot.loader.systemd-boot = {
|
||||
enable = true;
|
||||
boot.loader.systemd-boot = lib.mkIf config.boot.loader.systemd-boot.enable {
|
||||
editor = false;
|
||||
graceful = true;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue