python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / profiles / headless.nix
blobc17cb287b72b0d81b12af7ce3ebb83aad8671790
1 # Common configuration for headless machines (e.g., Amazon EC2
2 # instances).
4 { lib, ... }:
6 with lib;
9   boot.vesa = false;
11   # Don't start a tty on the serial consoles.
12   systemd.services."serial-getty@ttyS0".enable = lib.mkDefault false;
13   systemd.services."serial-getty@hvc0".enable = false;
14   systemd.services."getty@tty1".enable = false;
15   systemd.services."autovt@".enable = false;
17   # Since we can't manually respond to a panic, just reboot.
18   boot.kernelParams = [ "panic=1" "boot.panic_on_fail" ];
20   # Don't allow emergency mode, because we don't have a console.
21   systemd.enableEmergencyMode = false;
23   # Being headless, we don't need a GRUB splash image.
24   boot.loader.grub.splashImage = null;