flake/configs/physical-computer.nix

20 lines
291 B
Nix
Raw Normal View History

2024-05-12 13:33:15 +02:00
{
lib,
pkgs,
...
}: {
boot = {
loader = {
systemd-boot.enable = lib.mkForce false;
efi.canTouchEfiVariables = true;
};
lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
};
environment.systemPackages = with pkgs; [sbctl];
}