diff options
author | Alan Pearce | 2019-08-19 16:20:20 +0200 |
---|---|---|
committer | Alan Pearce | 2019-08-19 16:20:20 +0200 |
commit | 40581eb7fd601d9af881d0b056a381f14553b35e (patch) | |
tree | 72c1c3fd6ce8e39d7756ef3793f1cf7a2dbccbd7 /modules | |
parent | 97b6b1f4ed9d211d09f0fadbab92b3c93b604077 (diff) | |
download | nixos-configuration-40581eb7fd601d9af881d0b056a381f14553b35e.tar.lz nixos-configuration-40581eb7fd601d9af881d0b056a381f14553b35e.tar.zst nixos-configuration-40581eb7fd601d9af881d0b056a381f14553b35e.zip |
t470s: Disable WWAN (unused)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/machines/t470s.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/machines/t470s.nix b/modules/machines/t470s.nix index 53f8908..42a8767 100644 --- a/modules/machines/t470s.nix +++ b/modules/machines/t470s.nix @@ -1,6 +1,8 @@ { config, pkgs, ... }: -{ hardware.usbWwan.enable = true; +{ hardware.usbWwan.enable = false; # unused + systemd.services.ModemManager.enable = false; + hardware.firmware = with pkgs; [ firmwareLinuxNonfree ]; |