nixos/modules/systemd-efi.nix

7 lines
147 B
Nix
Raw Normal View History

2024-07-14 06:13:04 +00:00
{ config, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub.device = "nodev";
}