summaryrefslogtreecommitdiff
path: root/modules/sound.nix
blob: 49ca5bc795713a9d831486943bb00ee605e4300c (plain)
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
{
  config,
  lib,
  this,
  ...
}:
with lib;
let
  cfg = config.nixfiles.modules.sound;
in
{
  options.nixfiles.modules.sound.enable = mkEnableOption "sound support";

  config =
    mkIf cfg.enable {
      services.pipewire = {
        enable = true;

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

      security.rtkit.enable = true;
    }
    // {
      sound.enable = this.isHeadful;
    };
}