summaryrefslogtreecommitdiffstats
path: root/tv/2configs/netzclub.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tv/2configs/netzclub.nix')
-rw-r--r--tv/2configs/netzclub.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/tv/2configs/netzclub.nix b/tv/2configs/netzclub.nix
deleted file mode 100644
index 7286bc84..00000000
--- a/tv/2configs/netzclub.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ pkgs, ... }: {
-
- # usage: pppd call netzclub
-
- environment.etc."ppp/peers/netzclub".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 "netzclub.script" ''
- ABORT 'BUSY'
- ABORT 'NO CARRIER'
- ABORT 'VOICE'
- ABORT 'NO DIALTONE'
- ABORT 'NO DIAL TONE'
- ABORT 'NO ANSWER'
- ABORT 'DELAYED'
- REPORT CONNECT
- "" "ATDT*99#"
- CONNECT ""
- ''}"
- '';
-
- environment.systemPackages = [
- pkgs.ppp
- ];
-
-}