summaryrefslogtreecommitdiffstats
path: root/lass/2configs/ppp/x220-modem.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lass/2configs/ppp/x220-modem.nix')
-rw-r--r--lass/2configs/ppp/x220-modem.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/lass/2configs/ppp/x220-modem.nix b/lass/2configs/ppp/x220-modem.nix
deleted file mode 100644
index d6facb72..00000000
--- a/lass/2configs/ppp/x220-modem.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ pkgs, ... }: {
-
- # usage: pppd call x220
-
- environment.etc."ppp/peers/x220".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
- ];
-
-}