summaryrefslogtreecommitdiff
path: root/modules/nixos/sound.nix
blob: 073d59cea0fd737ad5bc1c62108671c0f6c749de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  config,
  lib,
  ...
}:
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;
    };
  };
}