about summary refs log tree commit diff
path: root/modules/nixos-apple-silicon/apple-silicon-support/modules/sound/default.nix
blob: e1b45a8dcbcf42d476658726f24b883c82781b55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{ config, pkgs, lib, ... }:

{
  imports = [
    # disable pulseaudio as the Asahi sound infrastructure can't use it.
    # if we disable it only if setupAsahiSound is enabled, then infinite
    # recursion results as pulseaudio enables config.sound by default.
    { config.hardware.pulseaudio.enable = false; }
  ];

  options.hardware.asahi = {
    setupAsahiSound = lib.mkOption {
      type = lib.types.bool;
      default = config.sound.enable;
      description = ''
        Set up the Asahi DSP components so that the speakers and headphone jack
        work properly and safely.
      '';
    };
  };

  config = let
    asahi-audio = pkgs.asahi-audio; # the asahi-audio we use

    lsp-plugins = pkgs.lsp-plugins; # the lsp-plugins we use

    lsp-plugins-is-patched = (lsp-plugins.overrideAttrs (old: {
      passthru = (old.passthru or {}) // {
        lsp-plugins-is-patched = builtins.elem "58c3f985f009c84347fa91236f164a9e47aafa93.patch"
          (builtins.map (p: p.name) (old.patches or []));
      };
    })).lsp-plugins-is-patched;

    lsp-plugins-is-safe = (pkgs.lib.versionAtLeast lsp-plugins.version "1.2.14") || lsp-plugins-is-patched;
  in lib.mkIf config.hardware.asahi.setupAsahiSound {
    # enable pipewire to run real-time and avoid audible glitches
    security.rtkit.enable = true;
    # set up pipewire with the supported capabilities (instead of pulseaudio)
    services.pipewire = {
      enable = true;

      alsa.enable = true;
      wireplumber.enable = true;
      pulse.enable = true;
    };

    # enable speakersafetyd to protect speakers
    systemd.packages = lib.mkAssert lsp-plugins-is-safe
      "lsp-plugins is unpatched/outdated and speakers cannot be safely enabled"
      [ pkgs.speakersafetyd ];
    services.udev.packages = [ pkgs.speakersafetyd ];

    # set up enivronment so that asahi-audio and UCM configs are used
    environment.etc = builtins.listToAttrs (builtins.map
      (f: { name = f; value = { source = "${asahi-audio}/share/${f}"; }; })
      asahi-audio.providedConfigFiles);
    environment.variables.ALSA_CONFIG_UCM2 = "${pkgs.alsa-ucm-conf-asahi}/share/alsa/ucm2";

    # set up pipewire and wireplumber to use asahi-audio configs and plugins
    systemd.user.services.pipewire.environment.ALSA_CONFIG_UCM2 = config.environment.variables.ALSA_CONFIG_UCM2;
    systemd.user.services.wireplumber.environment.ALSA_CONFIG_UCM2 = config.environment.variables.ALSA_CONFIG_UCM2;
    systemd.user.services.pipewire.environment.LV2_PATH = let
      lv2Plugins = [ lsp-plugins pkgs.bankstown-lv2 ];
    in lib.makeSearchPath "lib/lv2" lv2Plugins;
    systemd.user.services.wireplumber.environment.LV2_PATH = let
      lv2Plugins = [ lsp-plugins pkgs.bankstown-lv2 ];
    in lib.makeSearchPath "lib/lv2" lv2Plugins;
  };
}