nixos/modules/systemd-efi.nix
2024-07-16 19:51:29 -05:00

7 lines
147 B
Nix

{ config, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub.device = "nodev";
}