blob: 22ca815678b908ba40883037bb79e75cb432e6f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# ALSA node property overrides for HDMI output
monitor.alsa.rules = [
# Generic PCI cards on any VM type
{
matches = [
{ node.name = "~alsa_output.*" }
]
actions = {
update-props = {
audio.format = "S16LE"
audio.channels = 2
audio.position = "FR,FL"
}
}
}
]
|