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 | d2551a2268e54fede53d982e0173424735f94680 (patch) | |
tree | d65ad5523a650de810f6733e02e5471eed83f57e /tv/2configs/ppp.nix | |
parent | fa78b6615444e6db21045f93c2b3ae763e23aff9 (diff) | |
parent | 111c94fe61e5c47f3af04e38b6d804ee43ca8e98 (diff) |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'tv/2configs/ppp.nix')
-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 000000000..9cc7568a5 --- /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 + ]; + +} |