m umts: add apn option

This commit is contained in:
makefu 2017-02-16 18:28:59 +01:00
parent c05764274e
commit d5f26f2831
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 9 additions and 1 deletions

View File

@ -66,6 +66,7 @@
];
makefu.server.primary-itf = "wlp2s0";
makefu.full-populate = true;
makefu.umts.apn = "web.vodafone.de";
nixpkgs.config.allowUnfree = true;
krebs.nginx = {

View File

@ -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 = {