dotfiles/nix/modules/efi.nix

9 lines
188 B
Nix
Raw Normal View History

2025-09-13 19:36:00 -04:00
{ config, pkgs, inputs, ... }:
{
# SystemD-boot is good enough
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
systemd.tpm2.enable = false;
}