summaryrefslogtreecommitdiffstats
path: root/makefu/3modules
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-02-16 18:28:59 +0100
committermakefu <github@syntax-fehler.de>2017-03-05 16:55:43 +0100
commitd5f26f28317a923397a36309554396194bfcad27 (patch)
tree64e98f3431c8ffa85d75c58613760a91e88509d7 /makefu/3modules
parentc05764274e5043912204b56cb1f032e1d5db6717 (diff)
m umts: add apn option
Diffstat (limited to 'makefu/3modules')
-rw-r--r--makefu/3modules/umts.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/makefu/3modules/umts.nix b/makefu/3modules/umts.nix
index 91ac1375..86669945 100644
--- a/makefu/3modules/umts.nix
+++ b/makefu/3modules/umts.nix
@@ -26,7 +26,7 @@ let
Dial Command = ATDT
Modem = ${cfg.modem-device}
Baud = 460800
- Init1 = AT+CGDCONT=1,"IP","pinternet.interkom.de","",0,0
+ Init1 = AT+CGDCONT=1,"IP","${config.makefu.umts.apn}","",0,0
Init2 = ATZ
Init3 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
ISDN = 0
@@ -54,6 +54,13 @@ let
to avoid race conditions.
'';
};
+ apn = mkOption {
+ default = "pinternet.interkom.de";
+ type = types.str;
+ description = ''
+ apn to use for dailing
+ '';
+ };
};
imp = {