makefu: add wwan with wvdial

This commit is contained in:
Felix Richter 2015-08-23 14:35:13 +02:00
parent c5a110046b
commit 1f688db4d6

10
2configs/wwan.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
let
mainUser = config.krebs.build.user;
in {
environment.systemPackages = with pkgs;[
wvdial
];
users.extraUsers.${mainUser.name}.extraGroups = [ "dialout" ];
}