mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-17 06:59:46 +03:00
12 lines
119 B
Bash
Executable file
12 lines
119 B
Bash
Executable file
#! /bin/sh
|
|
|
|
nohup bash -c 'NIX_REMOTE= ./install-script.sh &>/dev/tty11' &
|
|
|
|
sleep 1;
|
|
|
|
chvt 11 || true;
|
|
|
|
disown
|
|
|
|
exit
|
|
|