DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: 8c36e1a019c5bde84a09768918dd4d3ff2432db5 nix-arta/modules/nixos/audio.nix -rw-r--r-- 340 bytes
8c36e1a0Jonni Liljamo feat: alice initial 4 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;
    };
  };
}