2024-02-12 14:59:10 -05:00
|
|
|
{ pkgs, ... }:
|
2024-02-12 15:25:16 -05:00
|
|
|
|
|
|
|
{
|
2023-06-10 13:11:59 -04:00
|
|
|
imports = [ ../. ];
|
2024-02-12 14:59:10 -05:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
alsa-utils
|
|
|
|
];
|
|
|
|
|
|
|
|
systemd.services.x1-fix = {
|
|
|
|
description = "Use alsa-utils to fix sound interference on Thinkpad x1 Nano";
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "simple";
|
|
|
|
ExecStart = "${pkgs.alsa-tools}/bin/hda-verb /dev/snd/hwC0D0 0x1d SET_PIN_WIDGET_CONTROL 0x0";
|
|
|
|
Restart = "on-failure";
|
|
|
|
};
|
|
|
|
wantedBy = [ "default.target" ];
|
|
|
|
};
|
2023-06-10 13:11:59 -04:00
|
|
|
}
|