nix-files/hosts/common/programs/callaudiod.nix

17 lines
621 B
Nix
Raw Normal View History

2024-05-18 08:07:59 +00:00
# https://gitlab.com/mobian1/callaudiod
# note: on desko it's expected that callaudiod doesn't really achieve anything (i.e. no mic muting).
# - "Card 'alsa_card.pci-0000_0b_00.1' lacks speaker and/or earpiece port, skipping"
# - "callaudiod-pulse-CRITICAL **: 07:45:48.092: No suitable card found, stopping here..."
{ pkgs, ... }:
{
sane.programs.callaudiod = {
packageUnwrapped = pkgs.rmDbusServices pkgs.callaudiod;
services.callaudiod = {
description = "callaudiod: dbus service to switch audio profiles and mute microphone";
partOf = [ "default" ];
command = "callaudiod";
};
};
}