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

9 lines
187 B
Nix
Raw Normal View History

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