mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-22 10:32:55 -05:00
16 lines
260 B
Nix
16 lines
260 B
Nix
{lib, ...}: {
|
|
boot = {
|
|
initrd.systemd.enable = true;
|
|
|
|
lanzaboote = {
|
|
enable = true;
|
|
pkiBundle = "/etc/secureboot";
|
|
};
|
|
|
|
loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot.enable = lib.mkForce false;
|
|
};
|
|
};
|
|
}
|