mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
36120abf6b
Signed-off-by: Magic_RB <magic_rb@redalder.org>
21 lines
343 B
Nix
21 lines
343 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
boot.loader = {
|
|
systemd-boot.enable = false;
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
|
|
mirroredBoots = [
|
|
{
|
|
devices = [ "nodev" ];
|
|
path = "/boot/1";
|
|
efiSysMountPoint = "/boot/1/EFI";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|