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