summary refs log tree commit diff stats
path: root/modules/t470s.nix
blob: 133354a6ee687fec8f62bfc6ae406a5c2d5d107b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{ hardware.usbWwan.enable = true;
  hardware.firmware = with pkgs; [
    firmwareLinuxNonfree
  ];

  systemd.services.ModemManager.enable = true;

  environment.systemPackages = with pkgs; [
    nvme-cli
  ];
}