DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: bc04f643ed7d8a13d5651f21dbda118d269bf389 nix-arta/modules/nixos/audio.nix -rw-r--r-- 340 bytes
bc04f643Jonni Liljamo feat: mako 10 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  flake.modules.nixos.audio = {pkgs, ...}: {
    environment.systemPackages = with pkgs; [
      # FIXME: change to a TUI
      pavucontrol
    ];

    services.pipewire = {
      enable = true;
      alsa = {
        enable = true;
        support32Bit = true;
      };
      jack.enable = true;
      pulse.enable = true;
    };
  };
}