aboutsummaryrefslogtreecommitdiff
path: root/infra/hosts/indra/boot.nix
blob: 073e8c8a084b6b67df7146c6f6f1ea52e658dfb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"
      ];
    };
  };
}