dots/modules/hardware/secureboot.nix
Nico 3660ef23f1 chore: organise modules
Organise modules in a significantly better way with categories.
2025-05-03 16:34:35 +10:00

17 lines
293 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
sbctl
];
boot.loader.systemd-boot.enable = lib.mkForce false;
boot.lanzaboote = {
enable = true;
pkiBundle = "/var/lib/sbctl";
};
# needed for tpm unlock
boot.initrd.systemd.enable = true;
}