dotfiles/.config/nix/modules/efi.nix

8 lines
187 B
Nix

{ config, pkgs, inputs, ... }
{
# SystemD-boot is good enough
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
systemd.tpm2.enable = false;
}