dotfiles/.config/nix/modules/efi.nix
2025-09-13 19:36:00 -04:00

8 lines
188 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;
}