{
flake.modules.nixos.indra = {
boot = {
loader.grub = {
enable = true;
efiSupport = false;
};
kernelParams = [
"console=tty1"
# The Hostinger VPS does not work if the console output is not sent
# to the serial console as well.
"console=ttyS0,115200n8"
];
};
};
}