2008-11-23 01:29:05 +00:00
|
|
|
# ALSA sound support.
|
2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-10-12 17:27:57 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2007-03-01 00:36:00 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2009-07-16 15:01:56 +00:00
|
|
|
inherit (pkgs) alsaUtils;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2008-11-23 01:29:05 +00:00
|
|
|
options = {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2008-11-23 01:29:05 +00:00
|
|
|
sound = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2013-10-28 15:14:15 +00:00
|
|
|
type = types.bool;
|
2008-11-23 01:29:05 +00:00
|
|
|
default = true;
|
2009-07-16 15:01:56 +00:00
|
|
|
description = ''
|
2008-11-23 01:29:05 +00:00
|
|
|
Whether to enable ALSA sound.
|
2009-07-16 15:01:56 +00:00
|
|
|
'';
|
2008-11-23 01:29:05 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2010-03-03 14:01:13 +00:00
|
|
|
enableOSSEmulation = mkOption {
|
2013-10-28 15:14:15 +00:00
|
|
|
type = types.bool;
|
2010-03-03 14:01:13 +00:00
|
|
|
default = true;
|
2012-08-17 15:00:14 +00:00
|
|
|
description = ''
|
|
|
|
Whether to enable ALSA OSS emulation (with certain cards sound mixing may not work!).
|
|
|
|
'';
|
2010-03-03 14:01:13 +00:00
|
|
|
};
|
2007-03-01 00:36:00 +00:00
|
|
|
|
2014-05-23 10:53:24 +00:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
2014-05-23 17:20:16 +00:00
|
|
|
default = "";
|
2014-05-23 10:53:24 +00:00
|
|
|
example = ''
|
|
|
|
defaults.pcm.!card 3
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Set addition configuration for system-wide alsa.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2008-11-23 01:29:05 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2008-11-23 01:29:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-07-16 15:01:56 +00:00
|
|
|
###### implementation
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-07-16 15:01:56 +00:00
|
|
|
config = mkIf config.sound.enable {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2011-11-04 17:40:00 +00:00
|
|
|
environment.systemPackages = [ alsaUtils ];
|
2008-11-23 01:29:05 +00:00
|
|
|
|
2014-05-23 17:20:16 +00:00
|
|
|
environment.etc = mkIf (config.sound.extraConfig != "")
|
|
|
|
[
|
|
|
|
{ source = pkgs.writeText "asound.conf" config.sound.extraConfig;
|
|
|
|
target = "asound.conf";
|
|
|
|
}
|
|
|
|
];
|
2014-05-23 10:53:24 +00:00
|
|
|
|
2012-10-02 15:09:54 +00:00
|
|
|
# ALSA provides a udev rule for restoring volume settings.
|
|
|
|
services.udev.packages = [ alsaUtils ];
|
2008-11-23 01:29:05 +00:00
|
|
|
|
2012-10-02 15:09:54 +00:00
|
|
|
boot.kernelModules = optional config.sound.enableOSSEmulation "snd_pcm_oss";
|
2007-03-01 00:36:00 +00:00
|
|
|
|
2013-01-16 11:33:18 +00:00
|
|
|
systemd.services."alsa-store" =
|
2012-10-02 15:09:54 +00:00
|
|
|
{ description = "Store Sound Card State";
|
2013-09-22 19:31:38 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
unitConfig.RequiresMountsFor = "/var/lib/alsa";
|
2013-11-26 17:17:12 +00:00
|
|
|
unitConfig.ConditionVirtualization = "!systemd-nspawn";
|
2013-09-22 19:31:38 +00:00
|
|
|
serviceConfig = {
|
|
|
|
Type = "oneshot";
|
|
|
|
RemainAfterExit = true;
|
|
|
|
ExecStart = "${pkgs.coreutils}/bin/mkdir -p /var/lib/alsa";
|
|
|
|
ExecStop = "${alsaUtils}/sbin/alsactl store --ignore";
|
|
|
|
};
|
2009-07-16 15:01:56 +00:00
|
|
|
};
|
2012-10-09 19:14:32 +00:00
|
|
|
|
2008-11-23 01:29:05 +00:00
|
|
|
};
|
2007-03-01 00:36:00 +00:00
|
|
|
|
|
|
|
}
|