summaryrefslogtreecommitdiffstats
path: root/tv/2configs/netzclub.nix
blob: 7286bc84d5a50eb42b1052175b4a362145d0eee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ 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
  ];

}