add lte modem
This commit is contained in:
parent
47239881f7
commit
e391174fe0
3 changed files with 10 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
<home-manager/nixos>
|
<home-manager/nixos>
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
./lte-modem.nix
|
||||||
../../boot.nix
|
../../boot.nix
|
||||||
../../common.nix
|
../../common.nix
|
||||||
../../gfx-intel.nix
|
../../gfx-intel.nix
|
||||||
|
|
8
nixos/boxes/foureighty/lte-modem.nix
Normal file
8
nixos/boxes/foureighty/lte-modem.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
libqmi
|
||||||
|
];
|
||||||
|
boot.extraModulePackages = with pkgs; [ libqmi ];
|
||||||
|
boot.kernelModules = [ "qmi_wwan" "qcserial" ];
|
||||||
|
}
|
|
@ -33,6 +33,7 @@
|
||||||
keybase-gui
|
keybase-gui
|
||||||
libreoffice
|
libreoffice
|
||||||
mindforgerPatched.mindforger
|
mindforgerPatched.mindforger
|
||||||
|
modem-manager-gui
|
||||||
passff-host
|
passff-host
|
||||||
pdfarranger
|
pdfarranger
|
||||||
python38Packages.binwalk-full
|
python38Packages.binwalk-full
|
||||||
|
|
Loading…
Reference in a new issue