diff options
author | makefu <github@syntax-fehler.de> | 2017-09-04 10:37:40 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-09-06 11:05:45 +0200 |
commit | 9646fa5cf7e90aef951d79948675ffb2f521fd52 (patch) | |
tree | a870672e8a098c6f10ff6079a73a5906498c6064 /makefu/3modules/wvdial.nix | |
parent | e28c8c3d3ec0d99f08a1330cbc2f6991c8b14878 (diff) |
ma umts module: add missing module from stable
Diffstat (limited to 'makefu/3modules/wvdial.nix')
-rw-r--r-- | makefu/3modules/wvdial.nix | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/makefu/3modules/wvdial.nix b/makefu/3modules/wvdial.nix new file mode 100644 index 000000000..982f4a7db --- /dev/null +++ b/makefu/3modules/wvdial.nix @@ -0,0 +1,70 @@ +{ config, lib, pkgs, ... }: +# from 17.03/nixos/modules/programs/wvdial.nix + +with lib; + +let + + configFile = '' + [Dialer Defaults] + PPPD PATH = ${pkgs.ppp}/sbin/pppd + ${config.environment.wvdial.dialerDefaults} + ''; + + cfg = config.environment.wvdial; + +in +{ + ###### interface + + options = { + + environment.wvdial = { + + dialerDefaults = mkOption { + default = ""; + type = types.str; + example = ''Init1 = AT+CGDCONT=1,"IP","internet.t-mobile"''; + description = '' + Contents of the "Dialer Defaults" section of + <filename>/etc/wvdial.conf</filename>. + ''; + }; + + pppDefaults = mkOption { + default = '' + noipdefault + usepeerdns + defaultroute + persist + noauth + ''; + type = types.str; + description = "Default ppp settings for wvdial."; + }; + + }; + + }; + + ###### implementation + + config = mkIf (cfg.dialerDefaults != "") { + + environment = { + + etc = + [ + { source = pkgs.writeText "wvdial.conf" configFile; + target = "wvdial.conf"; + } + { source = pkgs.writeText "wvdial" cfg.pppDefaults; + target = "ppp/peers/wvdial"; + } + ]; + + }; + + }; + +} |