2008-11-23 02:29:05 +01:00
|
|
|
# ALSA sound support.
|
2009-10-12 19:27:57 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2007-03-01 01:36:00 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2009-07-16 17:01:56 +02:00
|
|
|
inherit (pkgs) alsaUtils;
|
|
|
|
|
|
|
|
soundState = "/var/lib/alsa/asound.state";
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
2008-11-23 02:29:05 +01:00
|
|
|
options = {
|
2009-07-16 17:01:56 +02:00
|
|
|
|
2008-11-23 02:29:05 +01:00
|
|
|
sound = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = true;
|
2009-07-16 17:01:56 +02:00
|
|
|
description = ''
|
2008-11-23 02:29:05 +01:00
|
|
|
Whether to enable ALSA sound.
|
2009-07-16 17:01:56 +02:00
|
|
|
'';
|
2009-10-12 19:27:57 +02:00
|
|
|
merge = mergeEnableOption;
|
2008-11-23 02:29:05 +01:00
|
|
|
};
|
2010-03-03 15:01:13 +01:00
|
|
|
|
|
|
|
enableOSSEmulation = mkOption {
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether to enable ALSA OSS emulation (with certain cards sound mixing may not work!).
|
|
|
|
'';
|
|
|
|
};
|
2007-03-01 01:36:00 +01:00
|
|
|
|
2008-11-23 02:29:05 +01:00
|
|
|
};
|
2009-07-16 17:01:56 +02:00
|
|
|
|
2008-11-23 02:29:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-07-16 17:01:56 +02:00
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf config.sound.enable {
|
|
|
|
|
|
|
|
environment.systemPackages = [alsaUtils];
|
2007-06-10 22:17:51 +02:00
|
|
|
|
2009-07-16 17:01:56 +02:00
|
|
|
users.extraGroups = singleton
|
|
|
|
{ # Alsalib seems to require the existence of this group, even
|
|
|
|
# if it's not used (e.g., doesn't own any devices).
|
|
|
|
name = "audio";
|
|
|
|
gid = config.ids.gids.audio;
|
|
|
|
};
|
2008-11-23 02:29:05 +01:00
|
|
|
|
2009-10-12 20:09:34 +02:00
|
|
|
jobs.alsa =
|
2009-11-06 23:19:17 +01:00
|
|
|
{ startOn = "started udev";
|
2008-11-23 02:29:05 +01:00
|
|
|
|
2009-07-16 17:01:56 +02:00
|
|
|
preStart =
|
|
|
|
''
|
|
|
|
mkdir -m 0755 -p $(dirname ${soundState})
|
2008-11-23 02:29:05 +01:00
|
|
|
|
2009-07-16 17:01:56 +02:00
|
|
|
# Load some additional modules.
|
2010-03-03 15:01:13 +01:00
|
|
|
|
|
|
|
${optionalString config.sound.enableOSSEmulation
|
|
|
|
''
|
|
|
|
for mod in snd_pcm_oss; do
|
|
|
|
${config.system.sbin.modprobe}/sbin/modprobe $mod || true
|
|
|
|
done
|
|
|
|
''
|
|
|
|
}
|
2007-03-01 01:36:00 +01:00
|
|
|
|
2009-07-16 17:01:56 +02:00
|
|
|
# Restore the sound state.
|
|
|
|
${alsaUtils}/sbin/alsactl -f ${soundState} restore
|
|
|
|
'';
|
2007-03-01 01:36:00 +01:00
|
|
|
|
2009-07-16 17:01:56 +02:00
|
|
|
postStop =
|
|
|
|
''
|
|
|
|
# Save the sound state.
|
|
|
|
${alsaUtils}/sbin/alsactl -f ${soundState} store
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2008-11-23 02:29:05 +01:00
|
|
|
};
|
2007-03-01 01:36:00 +01:00
|
|
|
|
|
|
|
}
|