dotfiles/common/boot/grub.nix
RingOfStorms (Joshua Bell) f993f9fa73 wip
2025-03-07 01:02:16 -06:00

19 lines
341 B
Nix

{ config, lib, ... }:
with lib;
{
options.mods.boot_grub = {
device = mkOption {
type = types.str;
default = "/dev/sda";
description = ''
The device to install GRUB on.
'';
};
};
config = {
boot.loader.grub = {
enable = true;
device = config.mods.boot_grub.device;
};
};
}