7 lines
125 B
Nix
7 lines
125 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
lib.mkIf (config.jalr.bootloader == "grub2") {
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
};
|
|
}
|