containers: passthrough /dev/snd/seq

Required for MIDI.
This commit is contained in:
Donovan Glover
2025-05-22 00:47:20 -04:00
parent 93a9254a02
commit f4252670b1

@ -31,6 +31,11 @@ let
mountPoint = hostPath; mountPoint = hostPath;
}; };
seq = rec {
hostPath = "/dev/snd/seq";
mountPoint = hostPath;
};
dri = rec { dri = rec {
hostPath = "/dev/dri"; hostPath = "/dev/dri";
mountPoint = hostPath; mountPoint = hostPath;
@ -42,6 +47,10 @@ let
modifier = "rw"; modifier = "rw";
node = "/dev/dri/renderD128"; node = "/dev/dri/renderD128";
} }
{
modifier = "rw";
node = "/dev/snd/seq";
}
]; ];
specialArgs = { specialArgs = {