* ALSA requires a group named "audio".
svn path=/nixos/trunk/; revision=8863
This commit is contained in:
parent
4d4387a70e
commit
f3f16dc169
@ -14,6 +14,7 @@
|
|||||||
gids = {
|
gids = {
|
||||||
root = 0;
|
root = 0;
|
||||||
haldaemon = 5;
|
haldaemon = 5;
|
||||||
|
audio = 17;
|
||||||
users = 100;
|
users = 100;
|
||||||
nixbld = 30000;
|
nixbld = 30000;
|
||||||
nogroup = 65534;
|
nogroup = 65534;
|
||||||
|
@ -10,7 +10,15 @@ in
|
|||||||
name = "alsa";
|
name = "alsa";
|
||||||
|
|
||||||
extraPath = [alsaUtils];
|
extraPath = [alsaUtils];
|
||||||
|
|
||||||
|
# Alsalib seems to require the existence of this group, even if it's
|
||||||
|
# not used (e.g., doesn't own any devices).
|
||||||
|
groups = [
|
||||||
|
{ name = "audio";
|
||||||
|
gid = (import ../system/ids.nix).gids.audio;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
job = "
|
job = "
|
||||||
start on hardware-scan
|
start on hardware-scan
|
||||||
stop on shutdown
|
stop on shutdown
|
||||||
|
Loading…
Reference in New Issue
Block a user