summaryrefslogtreecommitdiff
path: root/modules/nixfiles/sound.nix
blob: ae35e4481b9a25069e79628710f8869c65c36fab (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 = false;
      jack.enable = false;
      pulse.enable = true;
    };
  };
}