mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
70aca5974c
svn path=/nixu/trunk/; revision=7076
11 lines
195 B
Nix
11 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}
|
|
";
|
|
}
|