nixos: remove lanzaboote and install limine

This commit is contained in:
emmatherock
2026-06-20 22:57:53 -03:00
parent 3c435a8b49
commit 3a96105987
4 changed files with 44 additions and 238 deletions
+8 -6
View File
@@ -1,11 +1,13 @@
{ lib, ... }:
{ pkgs, lib, ... }:
{
# Lanzaboote reemplaza al systemd-boot estándar
boot.loader.systemd-boot.enable = lib.mkForce false;
environment.systemPackages = with pkgs; [
sbctl
];
boot.lanzaboote = {
enable = true;
pkiBundle = "/var/lib/sbctl";
boot.loader.limine = {
secureBoot = {
enable = true;
};
};
}