16 lines
316 B
Nix
16 lines
316 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.jalr = {
|
|
bootloader = lib.mkOption {
|
|
type = lib.types.nullOr (lib.types.enum [ "systemd-boot" "grub2" "lanzaboote" ]);
|
|
default = null;
|
|
description = "Bootloader to install";
|
|
};
|
|
};
|
|
imports = [
|
|
./grub2.nix
|
|
./lanzaboote.nix
|
|
./systemd-boot.nix
|
|
];
|
|
}
|