about summary refs log tree commit diff
path: root/modules/nixfiles/sound.nix
blob: b352f3efcca48eeb4fecd6bc1fe9ba7e8fa5a276 (plain) (blame)
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 "Whether to enable sound support.";

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

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

Consider giving Nix/NixOS a try! <3