summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2020-10-03 12:17:08 +0200
committertv <tv@krebsco.de>2020-10-03 12:17:08 +0200
commitdac9dba691cb35300ee62199f5bf7b8975f62a1d (patch)
treef9132b756697c8f6cd40af6de38dd38073db9594
parent74a65a60eadb6990d6cd6bcb06767f1f40e89f52 (diff)
tv ppp: remove default config
-rw-r--r--tv/2configs/ppp.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/tv/2configs/ppp.nix b/tv/2configs/ppp.nix
index 9cc7568a..02227343 100644
--- a/tv/2configs/ppp.nix
+++ b/tv/2configs/ppp.nix
@@ -1,32 +1,2 @@
{ 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
- ];
-
}