mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
70aca5974c
svn path=/nixu/trunk/; revision=7076
10 lines
195 B
Nix
10 lines
195 B
Nix
{mingetty, ttyNumber}:
|
|
|
|
{
|
|
name = "tty" + toString ttyNumber;
|
|
job = "
|
|
start on startup
|
|
stop on shutdown
|
|
respawn ${mingetty}/sbin/mingetty --noclear tty${toString ttyNumber}
|
|
";
|
|
}
|