makefu: add wwan with wvdial

This commit is contained in:
Felix Richter 2015-08-23 14:35:13 +02:00
parent 7a1e2f83b2
commit a7f605bdf0

10
makefu/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" ];
}