dotfiles/nixos/systems/altra/grub.nix
Magic_RB 8fb752ae01
Initial altra configuration
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2023-06-28 14:17:17 +02:00

16 lines
214 B
Nix

{ pkgs, lib, ... }:
let
inherit (lib)
singleton;
in
{
boot.loader.efi = {
canTouchEfiVariables = true;
};
boot.loader.grub = {
enable = true;
device = "nodev";
efiSupport = true;
};
}