diff options
author | Alan Pearce | 2017-09-15 14:01:58 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-15 14:01:58 +0200 |
commit | d11f0455f026fa0165a04f08c2cd6ee01f13de97 (patch) | |
tree | a75d1fcd4d40b9e81111bfcbf7899fa6bf31854a | |
parent | 6e62d660060b6661ffce847979783999692aa267 (diff) | |
download | nixos-configuration-d11f0455f026fa0165a04f08c2cd6ee01f13de97.tar.lz nixos-configuration-d11f0455f026fa0165a04f08c2cd6ee01f13de97.tar.zst nixos-configuration-d11f0455f026fa0165a04f08c2cd6ee01f13de97.zip |
t470s: Kludgy fix for missing HDMI sound sink
-rw-r--r-- | modules/t470s.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/t470s.nix b/modules/t470s.nix index 133354a..09263b6 100644 --- a/modules/t470s.nix +++ b/modules/t470s.nix @@ -7,6 +7,10 @@ systemd.services.ModemManager.enable = true; + hardware.pulseaudio.extraConfig = '' + load-module module-alsa-sink device=hw:0,7 + ''; + environment.systemPackages = with pkgs; [ nvme-cli ]; |