2011-11-02 17:10:30 +01:00
|
|
|
|
# Common configuration for headless machines (e.g., Amazon EC2
|
|
|
|
|
# instances).
|
|
|
|
|
|
2012-05-16 17:08:44 +02:00
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
2011-11-02 17:10:30 +01:00
|
|
|
|
{
|
|
|
|
|
sound.enable = false;
|
|
|
|
|
boot.vesa = false;
|
|
|
|
|
boot.initrd.enableSplashScreen = false;
|
|
|
|
|
services.ttyBackgrounds.enable = false;
|
|
|
|
|
services.mingetty.ttys = [ ];
|
2011-11-03 21:11:11 +01:00
|
|
|
|
|
|
|
|
|
# Since we can't manually respond to a panic, just reboot.
|
|
|
|
|
boot.kernelParams = [ "panic=1" "stage1panic=1" ];
|
2012-05-16 17:08:44 +02:00
|
|
|
|
|
|
|
|
|
# Since we don't have an (interactive) console, disable the
|
|
|
|
|
# emergency shell (started if mountall fails).
|
|
|
|
|
jobs."mount-failed".script = mkOverride 50
|
|
|
|
|
''
|
|
|
|
|
${pkgs.utillinux}/bin/logger -p user.emerg -t mountall "filesystem ‘$DEVICE’ could not be mounted on ‘$MOUNTPOINT’"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# Likewise, redirect mountall output from the console to the default
|
|
|
|
|
# Upstart job log file.
|
|
|
|
|
jobs."mountall".console = mkOverride 50 "";
|
2011-11-02 17:10:30 +01:00
|
|
|
|
}
|