summary refs log tree commit diff
path: root/mixins/pipewire.nix
blob: 4208f082d8a0051a85bb1c95bd669ce170bbd389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  pkgs,
  config,
  ...
}: {
  config = {
    sound.enable = false;
    security.rtkit.enable = true;
    services.pipewire = {
      enable = true;
      alsa.enable = true;
      alsa.support32Bit = true;
      pulse.enable = true;
      jack.enable = true;
    };
  };
}