diff options
author | lassulus <lassulus@lassul.us> | 2017-10-10 22:33:32 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-10-10 22:33:32 +0200 |
commit | c5ff2b0e75149df3dbe208d61035dc544a9662b5 (patch) | |
tree | bbc6489fdc7f583688c39713a60b8a8b0d035b9f /makefu/3modules/wvdial.nix | |
parent | cb8a0ef2b4ebb37c76ae101f44a5b97879219a08 (diff) | |
parent | b9731d4851ec4f49235c0ea9e460bd96d2ff29a9 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/3modules/wvdial.nix')
-rw-r--r-- | makefu/3modules/wvdial.nix | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/makefu/3modules/wvdial.nix b/makefu/3modules/wvdial.nix new file mode 100644 index 000000000..1ed929ed4 --- /dev/null +++ b/makefu/3modules/wvdial.nix @@ -0,0 +1,71 @@ +# Global configuration for wvdial. + +{ config, lib, pkgs, ... }: + +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"; + } + ]; + + }; + + }; + +} |