nix-config/modules/nix/grub.nix
2025-06-29 20:54:55 +02:00

9 lines
231 B
Nix

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