nix/modules/hardware/systemd-boot/default.nix

13 lines
198 B
Nix
Raw Permalink Normal View History

2024-11-24 20:15:38 +01:00
{
lib,
config,
...
}: {
options = {
systemd-boot.enable = lib.mkEnableOption "";
};
config = lib.mkIf config.systemd-boot.enable {
boot.loader.systemd-boot.enable = true;
};
}