summaryrefslogtreecommitdiffstats
path: root/tv/2configs
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
commit41afed6fd74178a5a1fc3c4b5277cbf1f0b5efbd (patch)
tree2bb2954d3564191f0fea1d6a80352aacb19bbbd0 /tv/2configs
parent5c8163e30bd9332577275425fa9809d1d8a3e276 (diff)
tv ppp: remove default config
Diffstat (limited to 'tv/2configs')
-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 9cc7568..0222734 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
- ];
-
}