mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
11 lines
243 B
Nix
11 lines
243 B
Nix
|
# Common configuration for headless machines (e.g., Amazon EC2
|
||
|
# instances).
|
||
|
|
||
|
{
|
||
|
sound.enable = false;
|
||
|
boot.vesa = false;
|
||
|
boot.initrd.enableSplashScreen = false;
|
||
|
services.ttyBackgrounds.enable = false;
|
||
|
services.mingetty.ttys = [ ];
|
||
|
}
|