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