Add mobile broadband

This commit is contained in:
Jakob Lechner 2024-06-06 13:41:57 +02:00
parent bee0c89f8d
commit 2fb7ef2857
2 changed files with 8 additions and 0 deletions

View file

@ -32,6 +32,7 @@
./localization.nix
./mailserver
./matrix
./mobile-network.nix
./mute-indicator.nix
./networking
./nix.nix

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
lib.mkIf config.jalr.gui.enable {
environment.systemPackages = with pkgs; [
usb-modeswitch
];
}