nix-config/hosts/nixos/modules/boot.nix
lightly-toasted b738736f94 feat: add lanzaboote
- Added lanzaboote
- Disabled systemd-boot in favor of lanzaboote
- Added sbctl
2025-08-28 22:37:42 +09:00

12 lines
258 B
Nix

{ config, pkgs, lib, ... }:
{
boot.loader.systemd-boot.enable = lib.mkForce false;
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = [ "ntfs" ];
boot.lanzaboote = {
enable = true;
pkiBundle = "/var/lib/sbctl";
};
}