mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
a5a651dbb9
Signed-off-by: main <magic_rb@redalder.org>
46 lines
982 B
Nix
46 lines
982 B
Nix
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.magic_rb.grub;
|
|
in {
|
|
options.magic_rb.grub = with lib; {
|
|
enable = mkEnableOption "GRUB preconfigured for my setup style";
|
|
efi = mkOption {
|
|
type = types.submodule {
|
|
options.enable = mkEnableOption "EFI support";
|
|
};
|
|
default = {};
|
|
};
|
|
|
|
devices = mkOption {
|
|
description = "GRUB devices for legacy";
|
|
default = [];
|
|
type = with types; listOf string;
|
|
};
|
|
};
|
|
|
|
config = {
|
|
boot.loader = mkIf cfg.enable {
|
|
systemd-boot.enable = false;
|
|
efi.canTouchEfiVariables = cfg.efi.enable;
|
|
efi.efiSysMountPoint = "/boot/EFI";
|
|
|
|
grub = {
|
|
enable = true;
|
|
efiSupport = cfg.efi.enable;
|
|
version = 2;
|
|
devices =
|
|
if cfg.efi.enable
|
|
then ["nodev"]
|
|
else cfg.devices;
|
|
};
|
|
};
|
|
};
|
|
}
|