mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 10:36:12 +01:00
16 lines
275 B
Nix
16 lines
275 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
boot.loader = {
|
|
systemd-boot.enable = false;
|
|
efi.canTouchEfiVariables = true;
|
|
efi.efiSysMountPoint = "/boot/EFI";
|
|
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
version = 2;
|
|
devices = [ "nodev" ];
|
|
};
|
|
};
|
|
}
|