mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
16 lines
322 B
Nix
16 lines
322 B
Nix
{ pkgs, lib, ...}:
|
|
|
|
{
|
|
imports = [
|
|
../../../../../lenovo/thinkpad/z/gen2
|
|
];
|
|
|
|
environment.etc."asound.conf".source = ./asound.conf;
|
|
|
|
networking.networkmanager.fccUnlockScripts = [
|
|
{
|
|
id = "2c7c:030a";
|
|
path = "${pkgs.modemmanager}/share/ModemManager/fcc-unlock.available.d/2c7c:030a";
|
|
}
|
|
];
|
|
}
|