dotfiles/nixos/systems/blowhole/grub.nix
magic_rb 5b2a0468ca
Add netboot-xyz to server and omen
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-06-15 23:57:54 +02:00

19 lines
329 B
Nix

{inputs', ...}: {
imports = [
inputs'.self.nixosModules.netboot-xyz
];
boot.netboot-xyz = {
grub.bios = {};
enable = true;
};
boot.loader = {
systemd-boot.enable = false;
grub = {
enable = true;
devices = ["/dev/disk/by-id/usb-Verbatim_STORE_N_GO_072124E3712B7287-0:0"];
};
};
}