all repos — nixfiles @ 2c98b8c453cac66b09b6e2f505c336ce3f01663d

System and user configuration, managed by nix and home-manager

modules/t470s.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, pkgs, ... }:

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

  boot.blacklistedKernelModules = [ "thinkpad_acpi" ];

  systemd.services.ModemManager.enable = true;

  hardware.pulseaudio.extraConfig = ''
    load-module module-alsa-sink device=hw:0,7
  '';

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