From 6ed07ef251e380dd15fc5d3351e62614f102ea5e Mon Sep 17 00:00:00 2001 From: vkcku Date: Mon, 1 Jun 2026 16:36:34 +0530 Subject: infra(indra): initial configuration monorepo-revid: f03da585dab1b846571ab225c4196750254c319f --- infra/hosts/indra/boot.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 infra/hosts/indra/boot.nix (limited to 'infra/hosts/indra/boot.nix') 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" + ]; + }; + }; +} -- cgit v1.3.1