diff options
| author | nin <nineinchnade@gmail.com> | 2017-11-07 20:49:48 +0100 |
|---|---|---|
| committer | nin <nineinchnade@gmail.com> | 2017-11-07 20:49:48 +0100 |
| commit | 4e705415cfd2d2bc7c48486e454d8badf55f46e7 (patch) | |
| tree | 89bdfa1a17d9622994ccd4ff605676f19ec6a872 /tv/2configs | |
| parent | 2319484e02261f5c60cc3c48088e39369549a557 (diff) | |
| parent | 9125ba82302af07c11e5319ffbf10392ad2ba001 (diff) | |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'tv/2configs')
| -rw-r--r-- | tv/2configs/ppp.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tv/2configs/ppp.nix b/tv/2configs/ppp.nix new file mode 100644 index 0000000..9cc7568 --- /dev/null +++ b/tv/2configs/ppp.nix @@ -0,0 +1,32 @@ +{ pkgs, ... }: { + + # usage: pppd call default + + environment.etc."ppp/peers/default".text = '' + /dev/ttyACM2 + 921600 + crtscts + defaultroute + holdoff 10 + lock + maxfail 0 + noauth + nodetach + noipdefault + passive + persist + usepeerdns + connect "${pkgs.ppp}/bin/chat -f ${pkgs.writeText "default.chat" '' + ABORT "BUSY" + ABORT "NO CARRIER" + REPORT CONNECT + "" "ATDT*99#" + CONNECT + ''}" + ''; + + environment.systemPackages = [ + pkgs.ppp + ]; + +} |
