aboutsummaryrefslogtreecommitdiff
path: root/infra/hosts/indra/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/hosts/indra/boot.nix')
-rw-r--r--infra/hosts/indra/boot.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/infra/hosts/indra/boot.nix b/infra/hosts/indra/boot.nix
new file mode 100644
index 0000000..073e8c8
--- /dev/null
+++ b/infra/hosts/indra/boot.nix
@@ -0,0 +1,17 @@
+{
+ 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"
+ ];
+ };
+ };
+}